diff options
author | Lang Hames <lhames@gmail.com> | 2014-11-27 01:41:16 +0000 |
---|---|---|
committer | Lang Hames <lhames@gmail.com> | 2014-11-27 01:41:16 +0000 |
commit | 7ea98e142b9c3ce361739816eece77470bf00248 (patch) | |
tree | ebcb700af512c4349ce600c894e5d553889f648f /llvm/lib/ExecutionEngine/ExecutionEngine.cpp | |
parent | c321b931c01537e254d9f89746cc124f55b4b6aa (diff) | |
download | llvm-7ea98e142b9c3ce361739816eece77470bf00248.zip llvm-7ea98e142b9c3ce361739816eece77470bf00248.tar.gz llvm-7ea98e142b9c3ce361739816eece77470bf00248.tar.bz2 |
[MCJIT] Replace JITEventListener::anchor (temporarily removed in r222861), and
move GDBRegistrationListener into ExecutionEngine to avoid layering violation.
llvm-svn: 222864
Diffstat (limited to 'llvm/lib/ExecutionEngine/ExecutionEngine.cpp')
-rw-r--r-- | llvm/lib/ExecutionEngine/ExecutionEngine.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/llvm/lib/ExecutionEngine/ExecutionEngine.cpp b/llvm/lib/ExecutionEngine/ExecutionEngine.cpp index 20d1631..9ca0330 100644 --- a/llvm/lib/ExecutionEngine/ExecutionEngine.cpp +++ b/llvm/lib/ExecutionEngine/ExecutionEngine.cpp @@ -48,6 +48,8 @@ ExecutionEngine *(*ExecutionEngine::MCJITCtor)( ExecutionEngine *(*ExecutionEngine::InterpCtor)(std::unique_ptr<Module> M, std::string *ErrorStr) =nullptr; +void JITEventListener::anchor() {} + ExecutionEngine::ExecutionEngine(std::unique_ptr<Module> M) : EEState(*this), LazyFunctionCreator(nullptr) { |