diff options
author | Chris Lattner <sabre@nondot.org> | 2012-01-25 06:02:56 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2012-01-25 06:02:56 +0000 |
commit | 4ca829e89567f002fc74eb0e3e532a7c7662e031 (patch) | |
tree | d378bc96ed1aeb7ed0e40fc7f61d46aad65ee203 /lib/Transforms/InstCombine/InstCombineSimplifyDemanded.cpp | |
parent | 4bb3f34b2296f0ec70751f332cf7ef96d2d30a48 (diff) |
use ConstantVector::getSplat in a few places.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@148929 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Transforms/InstCombine/InstCombineSimplifyDemanded.cpp')
-rw-r--r-- | lib/Transforms/InstCombine/InstCombineSimplifyDemanded.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/Transforms/InstCombine/InstCombineSimplifyDemanded.cpp b/lib/Transforms/InstCombine/InstCombineSimplifyDemanded.cpp index ed9442511d..7b1617d778 100644 --- a/lib/Transforms/InstCombine/InstCombineSimplifyDemanded.cpp +++ b/lib/Transforms/InstCombine/InstCombineSimplifyDemanded.cpp @@ -851,8 +851,8 @@ Value *InstCombiner::SimplifyDemandedVectorElts(Value *V, APInt DemandedElts, } // If we changed the constant, return it. - Constant *NewCP = ConstantVector::get(Elts); - return NewCP != CV ? NewCP : 0; + Constant *NewCV = ConstantVector::get(Elts); + return NewCV != CV ? NewCV : 0; } if (ConstantDataVector *CDV = dyn_cast<ConstantDataVector>(V)) { |