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
This commit is contained in:
Chris Lattner 2006-03-10 22:49:05 +00:00
parent 7d74d1145f
commit 682365dc80

View File

@ -40,14 +40,10 @@ namespace llvm {
class Module; class Module;
class IntrinsicLowering { class IntrinsicLowering {
protected:
bool ShouldEmitDebugFunctions;
public: public:
IntrinsicLowering() : ShouldEmitDebugFunctions(false) {} IntrinsicLowering() {}
virtual ~IntrinsicLowering() {} virtual ~IntrinsicLowering() {}
bool EmitDebugFunctions() const { return ShouldEmitDebugFunctions; }
/// AddPrototypes - This method, if called, causes all of the prototypes /// AddPrototypes - This method, if called, causes all of the prototypes
/// that might be needed by an intrinsic lowering implementation to be /// that might be needed by an intrinsic lowering implementation to be
/// inserted into the module specified. /// inserted into the module specified.