aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--include/llvm/CodeGen/IntrinsicLowering.h6
1 files changed, 1 insertions, 5 deletions
diff --git a/include/llvm/CodeGen/IntrinsicLowering.h b/include/llvm/CodeGen/IntrinsicLowering.h
index bd7bfac2e9..e56a646786 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.