diff options
Diffstat (limited to 'llvm/lib/Transforms')
| -rw-r--r-- | llvm/lib/Transforms/InstCombine/InstCombinePHI.cpp | 2 | 
1 files changed, 1 insertions, 1 deletions
| diff --git a/llvm/lib/Transforms/InstCombine/InstCombinePHI.cpp b/llvm/lib/Transforms/InstCombine/InstCombinePHI.cpp index a1aa2dff11a..34d7ef3a3b0 100644 --- a/llvm/lib/Transforms/InstCombine/InstCombinePHI.cpp +++ b/llvm/lib/Transforms/InstCombine/InstCombinePHI.cpp @@ -209,7 +209,7 @@ Instruction *InstCombiner::FoldPHIArgGEPIntoPHI(PHINode &PN) {    GetElementPtrInst *NewGEP =       GetElementPtrInst::Create(Base, FixedOperands.begin()+1,                                FixedOperands.end()); -  if (AllInBounds) NewGEP->setIsInbounds(); +  if (AllInBounds) NewGEP->setIsInBounds();    return NewGEP;  } | 

