From: Chris Lattner Date: Fri, 10 Mar 2006 22:49:05 +0000 (+0000) Subject: remove ShouldEmitDebugFunctions, a hack to support llvm-db via the jit X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=682365dc80deb63aee3d1f884d86c2e886d171a5;p=oota-llvm.git 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 --- 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.