summaryrefslogtreecommitdiff
path: root/lib/Transforms
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2011-02-17 22:32:54 +0000
committerChris Lattner <sabre@nondot.org>2011-02-17 22:32:54 +0000
commit1521e91fc442b5c27d56118b45248e3d5707f7e2 (patch)
treefdeed3b94df9bdc3a351fa74b2c5c78b7e5ac787 /lib/Transforms
parent742c0dd8fd24b45d39e5ed73c61617c44a0e2d8c (diff)
downloadllvm-1521e91fc442b5c27d56118b45248e3d5707f7e2.tar.gz
llvm-1521e91fc442b5c27d56118b45248e3d5707f7e2.tar.bz2
llvm-1521e91fc442b5c27d56118b45248e3d5707f7e2.tar.xz
fix typo
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@125787 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Transforms')
-rw-r--r--lib/Transforms/InstCombine/InstCombinePHI.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Transforms/InstCombine/InstCombinePHI.cpp b/lib/Transforms/InstCombine/InstCombinePHI.cpp
index a1aa2dff11..34d7ef3a3b 100644
--- a/lib/Transforms/InstCombine/InstCombinePHI.cpp
+++ b/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;
}