diff options
author | Chris Lattner <sabre@nondot.org> | 2004-03-16 03:41:35 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2004-03-16 03:41:35 +0000 |
commit | 002be767333e4253df6c5477dda28890dbd3488c (patch) | |
tree | 50466f9feead43e90d95dbb628702d9d33ff9d15 /lib/Analysis/LoadValueNumbering.cpp | |
parent | 002dbddccdce9422ed4aa53ad1102bda154237fa (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.cpp | 2 |
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... |