fix typo

llvm-svn: 125787
diff --git a/llvm/lib/Transforms/InstCombine/InstCombinePHI.cpp b/llvm/lib/Transforms/InstCombine/InstCombinePHI.cpp
index a1aa2df..34d7ef3 100644
--- a/llvm/lib/Transforms/InstCombine/InstCombinePHI.cpp
+++ b/llvm/lib/Transforms/InstCombine/InstCombinePHI.cpp
@@ -209,7 +209,7 @@
   GetElementPtrInst *NewGEP = 
     GetElementPtrInst::Create(Base, FixedOperands.begin()+1,
                               FixedOperands.end());
-  if (AllInBounds) NewGEP->setIsInbounds();
+  if (AllInBounds) NewGEP->setIsInBounds();
   return NewGEP;
 }