Fix a typo that causes 2006-07-07-ComputeMaskedBits.ll to fail.

llvm-svn: 29072
This commit is contained in:
Evan Cheng 2006-07-07 21:37:21 +00:00
parent fd2e13b107
commit af5ae57333
1 changed files with 1 additions and 1 deletions

View File

@ -988,7 +988,7 @@ void TargetLowering::ComputeMaskedBits(SDOperand Op, uint64_t Mask,
KnownZero = ~((1ULL << (64-NLZ2))-1) & Mask; // Top bits known zero.
KnownOne = 0; // No one bits known.
} else {
KnownOne = KnownOne = 0; // Otherwise, nothing known.
KnownZero = KnownOne = 0; // Otherwise, nothing known.
}
}
return;