diff options
author | Eli Bendersky <eli.bendersky@intel.com> | 2012-01-22 07:05:02 +0000 |
---|---|---|
committer | Eli Bendersky <eli.bendersky@intel.com> | 2012-01-22 07:05:02 +0000 |
commit | 058d647adfe6815d0d976f06f5997a2cf642f0d9 (patch) | |
tree | fbcd1fb386c0b39b88e2415146577a2ad3a59477 /llvm/lib/ExecutionEngine/RuntimeDyld/RuntimeDyld.cpp | |
parent | a4ed5246d88b7fa8cdba5d7297bc1e1663025c68 (diff) | |
download | bcm5719-llvm-058d647adfe6815d0d976f06f5997a2cf642f0d9.tar.gz bcm5719-llvm-058d647adfe6815d0d976f06f5997a2cf642f0d9.zip |
Split the lib/ExecutionEngine/RuntimeDyld/RuntimeDyldImpl.h header to smaller logical headers.
ELF and MachO implementations of RuntimeDyldImpl go into their own header files now.
Reviewed on llvm-commits
llvm-svn: 148652
Diffstat (limited to 'llvm/lib/ExecutionEngine/RuntimeDyld/RuntimeDyld.cpp')
-rw-r--r-- | llvm/lib/ExecutionEngine/RuntimeDyld/RuntimeDyld.cpp | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/llvm/lib/ExecutionEngine/RuntimeDyld/RuntimeDyld.cpp b/llvm/lib/ExecutionEngine/RuntimeDyld/RuntimeDyld.cpp index 51f6ef0a872..2896c2d556c 100644 --- a/llvm/lib/ExecutionEngine/RuntimeDyld/RuntimeDyld.cpp +++ b/llvm/lib/ExecutionEngine/RuntimeDyld/RuntimeDyld.cpp @@ -13,7 +13,10 @@ #define DEBUG_TYPE "dyld" #include "RuntimeDyldImpl.h" +#include "RuntimeDyldELF.h" +#include "RuntimeDyldMachO.h" #include "llvm/Support/Path.h" + using namespace llvm; using namespace llvm::object; |