summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorBob Wilson <bob.wilson@apple.com>2010-04-01 20:04:30 +0000
committerBob Wilson <bob.wilson@apple.com>2010-04-01 20:04:30 +0000
commit33f22e8c661d11226036d67dcaf00a1ca41095e3 (patch)
tree1e5b0f07926f0550af5dc40e96beec3f81cc6bd9 /include
parent9bdb8f0717c7dc58ac7da56b28390f2d56961e0f (diff)
downloadllvm-33f22e8c661d11226036d67dcaf00a1ca41095e3.tar.gz
llvm-33f22e8c661d11226036d67dcaf00a1ca41095e3.tar.bz2
llvm-33f22e8c661d11226036d67dcaf00a1ca41095e3.tar.xz
Change another SSAUpdater function to avoid recursion.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@100131 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include')
-rw-r--r--include/llvm/Transforms/Utils/SSAUpdater.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/llvm/Transforms/Utils/SSAUpdater.h b/include/llvm/Transforms/Utils/SSAUpdater.h
index f353840cd5..f550d0285b 100644
--- a/include/llvm/Transforms/Utils/SSAUpdater.h
+++ b/include/llvm/Transforms/Utils/SSAUpdater.h
@@ -110,7 +110,7 @@ private:
void FindAvailableVal(BasicBlock *BB, BBInfo *Info, unsigned Counter);
void FindExistingPHI(BasicBlock *BB, BBInfo *Info);
bool CheckIfPHIMatches(BasicBlock *BB, BBInfo *Info, Value *Val);
- void RecordMatchingPHI(BasicBlock *BB, BBInfo *Info, PHINode *PHI);
+ void RecordMatchingPHI(PHINode *PHI);
void ClearPHITags(PHINode *PHI);
void operator=(const SSAUpdater&); // DO NOT IMPLEMENT