summaryrefslogtreecommitdiffstats
path: root/llvm/lib/Analysis/CFLAliasAnalysis.cpp
diff options
context:
space:
mode:
authorDavid Blaikie <dblaikie@gmail.com>2015-03-03 21:18:16 +0000
committerDavid Blaikie <dblaikie@gmail.com>2015-03-03 21:18:16 +0000
commit7f1e0565b32db8b0b82f78e680718a9703445bc8 (patch)
treeb817eb96d434fc174e04981179182da7de2b91a1 /llvm/lib/Analysis/CFLAliasAnalysis.cpp
parentbb8da4c08fbe6380195c61d134b149a4f4ade037 (diff)
downloadbcm5719-llvm-7f1e0565b32db8b0b82f78e680718a9703445bc8.tar.gz
bcm5719-llvm-7f1e0565b32db8b0b82f78e680718a9703445bc8.zip
Revert "Remove the explicit SDNodeIterator::operator= in favor of the implicit default"
Accidentally committed a few more of these cleanup changes than intended. Still breaking these out & tidying them up. This reverts commit r231135. llvm-svn: 231136
Diffstat (limited to 'llvm/lib/Analysis/CFLAliasAnalysis.cpp')
-rw-r--r--llvm/lib/Analysis/CFLAliasAnalysis.cpp4
1 files changed, 3 insertions, 1 deletions
diff --git a/llvm/lib/Analysis/CFLAliasAnalysis.cpp b/llvm/lib/Analysis/CFLAliasAnalysis.cpp
index cf92bfeca10..82fbfe06aee 100644
--- a/llvm/lib/Analysis/CFLAliasAnalysis.cpp
+++ b/llvm/lib/Analysis/CFLAliasAnalysis.cpp
@@ -151,13 +151,15 @@ struct FunctionInfo {
struct CFLAliasAnalysis;
-struct FunctionHandle final : public CallbackVH {
+struct FunctionHandle : public CallbackVH {
FunctionHandle(Function *Fn, CFLAliasAnalysis *CFLAA)
: CallbackVH(Fn), CFLAA(CFLAA) {
assert(Fn != nullptr);
assert(CFLAA != nullptr);
}
+ virtual ~FunctionHandle() {}
+
void deleted() override { removeSelfFromCache(); }
void allUsesReplacedWith(Value *) override { removeSelfFromCache(); }
OpenPOWER on IntegriCloud