aboutsummaryrefslogtreecommitdiff
path: root/lib/Analysis/LoadValueNumbering.cpp
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2004-03-16 03:41:35 +0000
committerChris Lattner <sabre@nondot.org>2004-03-16 03:41:35 +0000
commit002be767333e4253df6c5477dda28890dbd3488c (patch)
tree50466f9feead43e90d95dbb628702d9d33ff9d15 /lib/Analysis/LoadValueNumbering.cpp
parent002dbddccdce9422ed4aa53ad1102bda154237fa (diff)
Add some missing functions. Make sure to handle calls together in case the
client has another VN implementation that can VN calls. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@12427 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Analysis/LoadValueNumbering.cpp')
-rw-r--r--lib/Analysis/LoadValueNumbering.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Analysis/LoadValueNumbering.cpp b/lib/Analysis/LoadValueNumbering.cpp
index a71ade6d61..b67aaddde3 100644
--- a/lib/Analysis/LoadValueNumbering.cpp
+++ b/lib/Analysis/LoadValueNumbering.cpp
@@ -247,7 +247,7 @@ void LoadVN::getEqualNumberNodes(Value *V,
if (!isa<LoadInst>(V)) {
if (CallInst *CI = dyn_cast<CallInst>(V))
- return getCallEqualNumberNodes(CI, RetVals);
+ getCallEqualNumberNodes(CI, RetVals);
// Not a load instruction? Just chain to the base value numbering
// implementation to satisfy the request...