aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2003-12-28 08:55:50 +0000
committerChris Lattner <sabre@nondot.org>2003-12-28 08:55:50 +0000
commit624affb56fec58eb9f35c01c86a74eb60100b4a8 (patch)
tree1c7bd43e0d69025350b4e57527b9bd6169020899
parent42450d8a5fe3809d75b9e40641e551fb7d9aa2a4 (diff)
ABC's must have virtual dtors! Shame on me!
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@10624 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r--include/llvm/CodeGen/IntrinsicLowering.h1
-rw-r--r--include/llvm/IntrinsicLowering.h1
2 files changed, 2 insertions, 0 deletions
diff --git a/include/llvm/CodeGen/IntrinsicLowering.h b/include/llvm/CodeGen/IntrinsicLowering.h
index 9d4d89a0ac..7f0cd81ca6 100644
--- a/include/llvm/CodeGen/IntrinsicLowering.h
+++ b/include/llvm/CodeGen/IntrinsicLowering.h
@@ -37,6 +37,7 @@ namespace llvm {
class CallInst;
struct IntrinsicLowering {
+ virtual ~IntrinsicLowering() {}
/// LowerIntrinsicCall - This method returns the LLVM function which should
/// be used to implement the specified intrinsic function call. If an
diff --git a/include/llvm/IntrinsicLowering.h b/include/llvm/IntrinsicLowering.h
index 9d4d89a0ac..7f0cd81ca6 100644
--- a/include/llvm/IntrinsicLowering.h
+++ b/include/llvm/IntrinsicLowering.h
@@ -37,6 +37,7 @@ namespace llvm {
class CallInst;
struct IntrinsicLowering {
+ virtual ~IntrinsicLowering() {}
/// LowerIntrinsicCall - This method returns the LLVM function which should
/// be used to implement the specified intrinsic function call. If an