mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-23 19:23:23 +01:00
add a comment.
llvm-svn: 44293
This commit is contained in:
parent
f9379ef949
commit
642ae99085
@ -2660,7 +2660,7 @@ static Constant *GetFactor(Value *V) {
|
||||
if (ConstantInt *RHS = dyn_cast<ConstantInt>(I->getOperand(1))) {
|
||||
// X & 0xFFF0 is known to be a multiple of 16.
|
||||
uint32_t Zeros = RHS->getValue().countTrailingZeros();
|
||||
if (Zeros != V->getType()->getPrimitiveSizeInBits())
|
||||
if (Zeros != V->getType()->getPrimitiveSizeInBits())// don't shift by "32"
|
||||
return ConstantExpr::getShl(Result,
|
||||
ConstantInt::get(Result->getType(), Zeros));
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user