Condition Codes: Fix the findParity function.
--HG-- extra : convert_revision : 37520ed12f55f6b8d9daedca9947eaa2eb8d7cc7
This commit is contained in:
parent
2dd65dc254
commit
58c448ced5
1 changed files with 1 additions and 1 deletions
|
@ -63,7 +63,7 @@ findOverflow(int width, uint64_t dest, uint64_t src1, uint64_t src2) {
|
|||
inline
|
||||
bool
|
||||
findParity(int width, uint64_t dest) {
|
||||
dest &= width;
|
||||
dest &= mask(width);
|
||||
dest ^= (dest >> 32);
|
||||
dest ^= (dest >> 16);
|
||||
dest ^= (dest >> 8);
|
||||
|
|
Loading…
Reference in a new issue