From 682365dc80deb63aee3d1f884d86c2e886d171a5 Mon Sep 17 00:00:00 2001 From: Chris Lattner Date: Fri, 10 Mar 2006 22:49:05 +0000 Subject: [PATCH] remove ShouldEmitDebugFunctions, a hack to support llvm-db via the jit git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@26702 91177308-0d34-0410-b5e6-96231b3b80d8 --- include/llvm/CodeGen/IntrinsicLowering.h | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/include/llvm/CodeGen/IntrinsicLowering.h b/include/llvm/CodeGen/IntrinsicLowering.h index bd7bfac2e97..e56a646786c 100644 --- a/include/llvm/CodeGen/IntrinsicLowering.h +++ b/include/llvm/CodeGen/IntrinsicLowering.h @@ -40,14 +40,10 @@ namespace llvm { class Module; class IntrinsicLowering { - protected: - bool ShouldEmitDebugFunctions; public: - IntrinsicLowering() : ShouldEmitDebugFunctions(false) {} + IntrinsicLowering() {} virtual ~IntrinsicLowering() {} - bool EmitDebugFunctions() const { return ShouldEmitDebugFunctions; } - /// AddPrototypes - This method, if called, causes all of the prototypes /// that might be needed by an intrinsic lowering implementation to be /// inserted into the module specified.