mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-12-14 11:32:34 +00:00
Fix an obvious thinko.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@63510 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
97d0e0e314
commit
0e7c46bc7e
@ -1482,7 +1482,7 @@ Value *SROA::ConvertUsesOfStoreToScalar(StoreInst *SI, AllocaInst *NewAI,
|
||||
SV = BinaryOperator::CreateLShr(SV,
|
||||
ConstantInt::get(SV->getType(),-ShAmt),
|
||||
SV->getName(), SI);
|
||||
Mask = Mask.lshr(ShAmt);
|
||||
Mask = Mask.lshr(-ShAmt);
|
||||
}
|
||||
|
||||
// Mask out the bits we are about to insert from the old value, and or
|
||||
|
Loading…
Reference in New Issue
Block a user