summaryrefslogtreecommitdiff
path: root/include/llvm/CodeGen/IntrinsicLowering.h
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2006-03-10 22:49:05 +0000
committerChris Lattner <sabre@nondot.org>2006-03-10 22:49:05 +0000
commit682365dc80deb63aee3d1f884d86c2e886d171a5 (patch)
tree784f4be005ea46da0d4996bf9395b10a775fc39d /include/llvm/CodeGen/IntrinsicLowering.h
parent7d74d1145fd17cdc11113755cee2a21f3cb0b7cf (diff)
downloadllvm-682365dc80deb63aee3d1f884d86c2e886d171a5.tar.gz
llvm-682365dc80deb63aee3d1f884d86c2e886d171a5.tar.bz2
llvm-682365dc80deb63aee3d1f884d86c2e886d171a5.tar.xz
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
Diffstat (limited to 'include/llvm/CodeGen/IntrinsicLowering.h')
-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.