diff options
author | Chris Lattner <sabre@nondot.org> | 2006-03-10 22:49:05 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2006-03-10 22:49:05 +0000 |
commit | 682365dc80deb63aee3d1f884d86c2e886d171a5 (patch) | |
tree | 784f4be005ea46da0d4996bf9395b10a775fc39d | |
parent | 7d74d1145fd17cdc11113755cee2a21f3cb0b7cf (diff) | |
download | external_llvm-682365dc80deb63aee3d1f884d86c2e886d171a5.zip external_llvm-682365dc80deb63aee3d1f884d86c2e886d171a5.tar.gz external_llvm-682365dc80deb63aee3d1f884d86c2e886d171a5.tar.bz2 |
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
-rw-r--r-- | include/llvm/CodeGen/IntrinsicLowering.h | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/include/llvm/CodeGen/IntrinsicLowering.h b/include/llvm/CodeGen/IntrinsicLowering.h index bd7bfac..e56a646 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. |