commit | 75ae5a45ff6f62675bbbe2b7ee4732cd2faddd34 | [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 | 4a308cf7def21e0eb5d622a8055701b4bcd51e2f | |
parent | c9b7c4af5a7c55b9fd0553264df0c3bb129c8daf [diff] [blame] |
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; }