remove ShouldEmitDebugFunctions, a hack to support llvm-db via the jit
authorChris Lattner <sabre@nondot.org>
Fri, 10 Mar 2006 22:49:05 +0000 (22:49 +0000)
committerChris Lattner <sabre@nondot.org>
Fri, 10 Mar 2006 22:49:05 +0000 (22:49 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@26702 91177308-0d34-0410-b5e6-96231b3b80d8

include/llvm/CodeGen/IntrinsicLowering.h

index bd7bfac2e973c0851dd90e95064923403e7b8ce2..e56a646786cd71c444f0ec94978566fc5fc46063 100644 (file)
@@ -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.