From 624affb56fec58eb9f35c01c86a74eb60100b4a8 Mon Sep 17 00:00:00 2001 From: Chris Lattner Date: Sun, 28 Dec 2003 08:55:50 +0000 Subject: [PATCH] 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 --- include/llvm/CodeGen/IntrinsicLowering.h | 1 + include/llvm/IntrinsicLowering.h | 1 + 2 files changed, 2 insertions(+) diff --git a/include/llvm/CodeGen/IntrinsicLowering.h b/include/llvm/CodeGen/IntrinsicLowering.h index 9d4d89a0acf..7f0cd81ca6e 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 9d4d89a0acf..7f0cd81ca6e 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 -- 2.34.1