[llvm-commits] CVS: llvm/include/llvm/CodeGen/IntrinsicLowering.h

Chris Lattner lattner at cs.uiuc.edu
Fri Mar 10 14:49:17 PST 2006



Changes in directory llvm/include/llvm/CodeGen:

IntrinsicLowering.h updated: 1.9 -> 1.10
---
Log message:

remove ShouldEmitDebugFunctions, a hack to support llvm-db via the jit


---
Diffs of the changes:  (+1 -5)

 IntrinsicLowering.h |    6 +-----
 1 files changed, 1 insertion(+), 5 deletions(-)


Index: llvm/include/llvm/CodeGen/IntrinsicLowering.h
diff -u llvm/include/llvm/CodeGen/IntrinsicLowering.h:1.9 llvm/include/llvm/CodeGen/IntrinsicLowering.h:1.10
--- llvm/include/llvm/CodeGen/IntrinsicLowering.h:1.9	Wed Nov 16 01:21:15 2005
+++ llvm/include/llvm/CodeGen/IntrinsicLowering.h	Fri Mar 10 16:49:05 2006
@@ -40,14 +40,10 @@
   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.






More information about the llvm-commits mailing list