forked from OSchip/llvm-project
remove ShouldEmitDebugFunctions, a hack to support llvm-db via the jit
llvm-svn: 26702
This commit is contained in:
parent
d3ef6c290a
commit
232d10ec19
|
@ -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.
|
||||
|
|
Loading…
Reference in New Issue