diff options
author | Lang Hames <lhames@gmail.com> | 2014-11-26 07:25:26 +0000 |
---|---|---|
committer | Lang Hames <lhames@gmail.com> | 2014-11-26 07:25:26 +0000 |
commit | 08a01ae3728e8896129cc6057ca2895d4e70b8e6 (patch) | |
tree | 4c9dc47b425dce5dfef368a759deef535af86ee0 /llvm/lib/ExecutionEngine | |
parent | 829a19ae74c572bdb5e46b4e4b85a35503255c94 (diff) | |
download | bcm5719-llvm-08a01ae3728e8896129cc6057ca2895d4e70b8e6.tar.gz bcm5719-llvm-08a01ae3728e8896129cc6057ca2895d4e70b8e6.zip |
[MCJIT] Temporarily disable automatic JIT debugger registration.
The RuntimeDyld cleanup patch r222810 turned on GDB registration for MachO
objects. I expected this to be harmless, but it seems to have broken on
MacsOS. Temporarily disabling debugger registration while I dig in to what's
gone wrong.
llvm-svn: 222811
Diffstat (limited to 'llvm/lib/ExecutionEngine')
-rw-r--r-- | llvm/lib/ExecutionEngine/MCJIT/MCJIT.cpp | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/llvm/lib/ExecutionEngine/MCJIT/MCJIT.cpp b/llvm/lib/ExecutionEngine/MCJIT/MCJIT.cpp index 58cf4e5e6dd..490fbb3df99 100644 --- a/llvm/lib/ExecutionEngine/MCJIT/MCJIT.cpp +++ b/llvm/lib/ExecutionEngine/MCJIT/MCJIT.cpp @@ -75,7 +75,6 @@ MCJIT::MCJIT(std::unique_ptr<Module> M, std::unique_ptr<TargetMachine> tm, OwnedModules.addModule(std::move(First)); setDataLayout(TM->getSubtargetImpl()->getDataLayout()); - RegisterJITEventListener(JITEventListener::createGDBRegistrationListener()); } MCJIT::~MCJIT() { |