diff options
author | Dan Gohman <gohman@apple.com> | 2009-10-05 16:31:55 +0000 |
---|---|---|
committer | Dan Gohman <gohman@apple.com> | 2009-10-05 16:31:55 +0000 |
commit | e41a115e6a5c8c45122772557f04aa1917174c11 (patch) | |
tree | 990e8630ea8fa6cb49e485848e2e8b4aafa3dfd4 /lib/Transforms | |
parent | 01a76ce8d910c0ffee89beaa3819d3448791950f (diff) |
Use Use::operator= instead of Use::set, for consistency.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@83310 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Transforms')
-rw-r--r-- | lib/Transforms/Scalar/InstructionCombining.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/Transforms/Scalar/InstructionCombining.cpp b/lib/Transforms/Scalar/InstructionCombining.cpp index fae8629cde..26bf27c069 100644 --- a/lib/Transforms/Scalar/InstructionCombining.cpp +++ b/lib/Transforms/Scalar/InstructionCombining.cpp @@ -774,7 +774,7 @@ bool InstCombiner::SimplifyDemandedBits(Use &U, APInt DemandedMask, Value *NewVal = SimplifyDemandedUseBits(U.get(), DemandedMask, KnownZero, KnownOne, Depth); if (NewVal == 0) return false; - U.set(NewVal); + U = NewVal; return true; } @@ -12819,7 +12819,7 @@ bool InstCombiner::DoOneIteration(Function &F, unsigned Iteration) { if (Constant *NewC = ConstantFoldConstantExpression(CE, F.getContext(), TD)) if (NewC != CE) { - i->set(NewC); + *i = NewC; MadeIRChange = true; } } |