diff options
author | Weiming Zhao <wmzhao.code@gmail.com> | 2018-04-15 05:17:14 +0000 |
---|---|---|
committer | Weiming Zhao <wmzhao.code@gmail.com> | 2018-04-15 05:17:14 +0000 |
commit | 7c16977a8f8dd927ae246be386bea9b17bbcc15d (patch) | |
tree | 7728c2ed676ccecc34f17563a9c598deb62399e9 /llvm/lib/ExecutionEngine | |
parent | 84e99265d6a7589fee870f8f0a85ad50351e6cdc (diff) | |
download | bcm5719-llvm-7c16977a8f8dd927ae246be386bea9b17bbcc15d.tar.gz bcm5719-llvm-7c16977a8f8dd927ae246be386bea9b17bbcc15d.zip |
NFC: Move ObjectMemoryBuffer to support
Summary:
Since the class is used by both MCJIT and LTO, it makes more sense to move it to Support lib.
This is a follow up patch to r329929 and https://reviews.llvm.org/D45244
Reviewers: bkramer, dblaikie
Reviewed By: bkramer
Subscribers: mehdi_amini, eraman, llvm-commits
Differential Revision: https://reviews.llvm.org/D45606
llvm-svn: 330093
Diffstat (limited to 'llvm/lib/ExecutionEngine')
-rw-r--r-- | llvm/lib/ExecutionEngine/MCJIT/MCJIT.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/ExecutionEngine/MCJIT/MCJIT.h b/llvm/lib/ExecutionEngine/MCJIT/MCJIT.h index 7ac792497f7..7fe7ae586f3 100644 --- a/llvm/lib/ExecutionEngine/MCJIT/MCJIT.h +++ b/llvm/lib/ExecutionEngine/MCJIT/MCJIT.h @@ -14,10 +14,10 @@ #include "llvm/ADT/SmallVector.h" #include "llvm/ExecutionEngine/ExecutionEngine.h" #include "llvm/ExecutionEngine/ObjectCache.h" -#include "llvm/ExecutionEngine/ObjectMemoryBuffer.h" #include "llvm/ExecutionEngine/RTDyldMemoryManager.h" #include "llvm/ExecutionEngine/RuntimeDyld.h" #include "llvm/IR/Module.h" +#include "llvm/Support/ObjectMemoryBuffer.h" namespace llvm { class MCJIT; |