[llvm-commits] [llvm] r125787 - /llvm/trunk/lib/Transforms/InstCombine/InstCombinePHI.cpp

Chris Lattner sabre at nondot.org
Thu Feb 17 14:32:54 PST 2011


Author: lattner
Date: Thu Feb 17 16:32:54 2011
New Revision: 125787

URL: http://llvm.org/viewvc/llvm-project?rev=125787&view=rev
Log:
fix typo

Modified:
    llvm/trunk/lib/Transforms/InstCombine/InstCombinePHI.cpp

Modified: llvm/trunk/lib/Transforms/InstCombine/InstCombinePHI.cpp
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/lib/Transforms/InstCombine/InstCombinePHI.cpp?rev=125787&r1=125786&r2=125787&view=diff
==============================================================================
--- llvm/trunk/lib/Transforms/InstCombine/InstCombinePHI.cpp (original)
+++ llvm/trunk/lib/Transforms/InstCombine/InstCombinePHI.cpp Thu Feb 17 16:32:54 2011
@@ -209,7 +209,7 @@
   GetElementPtrInst *NewGEP = 
     GetElementPtrInst::Create(Base, FixedOperands.begin()+1,
                               FixedOperands.end());
-  if (AllInBounds) NewGEP->setIsInbounds();
+  if (AllInBounds) NewGEP->setIsInBounds();
   return NewGEP;
 }
 





More information about the llvm-commits mailing list