From: Duncan Sands Date: Mon, 2 Feb 2009 09:53:14 +0000 (+0000) Subject: Fix an obvious thinko. X-Git-Url: http://plrg.eecs.uci.edu/git/?a=commitdiff_plain;h=0e7c46bc7eb68099eecd1244390dccd0a77d0875;p=oota-llvm.git Fix an obvious thinko. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@63510 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/Transforms/Scalar/ScalarReplAggregates.cpp b/lib/Transforms/Scalar/ScalarReplAggregates.cpp index 10d2e00911d..8f36317e8ca 100644 --- a/lib/Transforms/Scalar/ScalarReplAggregates.cpp +++ b/lib/Transforms/Scalar/ScalarReplAggregates.cpp @@ -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