diff options
author | Chris Lattner <sabre@nondot.org> | 2003-12-28 08:55:50 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2003-12-28 08:55:50 +0000 |
commit | 624affb56fec58eb9f35c01c86a74eb60100b4a8 (patch) | |
tree | 1c7bd43e0d69025350b4e57527b9bd6169020899 | |
parent | 42450d8a5fe3809d75b9e40641e551fb7d9aa2a4 (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.h | 1 | ||||
-rw-r--r-- | include/llvm/IntrinsicLowering.h | 1 |
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 |