commit | 1521e91fc442b5c27d56118b45248e3d5707f7e2 | [log] [tgz] |
---|---|---|
author | Chris Lattner <sabre@nondot.org> | Thu Feb 17 22:32:54 2011 +0000 |
committer | Chris Lattner <sabre@nondot.org> | Thu Feb 17 22:32:54 2011 +0000 |
tree | fdeed3b94df9bdc3a351fa74b2c5c78b7e5ac787 | |
parent | 742c0dd8fd24b45d39e5ed73c61617c44a0e2d8c [diff] [blame] |
fix typo git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@125787 91177308-0d34-0410-b5e6-96231b3b80d8
diff --git a/lib/Transforms/InstCombine/InstCombinePHI.cpp b/lib/Transforms/InstCombine/InstCombinePHI.cpp index a1aa2df..34d7ef3 100644 --- a/lib/Transforms/InstCombine/InstCombinePHI.cpp +++ b/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; }