diff options
author | Nick Lewycky <nicholas@mxc.ca> | 2007-01-11 02:38:21 +0000 |
---|---|---|
committer | Nick Lewycky <nicholas@mxc.ca> | 2007-01-11 02:38:21 +0000 |
commit | bc00fec8355218ba280630d7a3aacd7425eca6c3 (patch) | |
tree | 35ba346234af27d2fb52007b176e4ad596adeaa8 | |
parent | 419c6f5ac8fff1c6fbe7954c006e0180f6a6aa05 (diff) |
Quiet compiler warning. The only reason the function is marked virtual
is so that it can be called from inside a debugger.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@33067 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | lib/Transforms/Scalar/PredicateSimplifier.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/lib/Transforms/Scalar/PredicateSimplifier.cpp b/lib/Transforms/Scalar/PredicateSimplifier.cpp index 16cc20c06a..cb4b2b39c1 100644 --- a/lib/Transforms/Scalar/PredicateSimplifier.cpp +++ b/lib/Transforms/Scalar/PredicateSimplifier.cpp @@ -247,6 +247,7 @@ namespace { private: #ifndef NDEBUG public: + virtual ~Node() {} virtual void dump() const { dump(*cerr.stream()); } @@ -638,6 +639,7 @@ namespace { } #ifndef NDEBUG + virtual ~InequalityGraph() {} virtual void dump() { dump(*cerr.stream()); } |