diff options
author | Lang Hames <lhames@gmail.com> | 2019-04-20 17:35:28 +0000 |
---|---|---|
committer | Lang Hames <lhames@gmail.com> | 2019-04-20 17:35:28 +0000 |
commit | f7c5e6c0ad5713128bb0553f58bd5b4bd1a3be0d (patch) | |
tree | 49f9b843df6746f4d2f1f903f00101b2f940cffb /llvm/examples | |
parent | 68b0b8c1928046aee21af6026b5bd5299e29769e (diff) | |
download | bcm5719-llvm-f7c5e6c0ad5713128bb0553f58bd5b4bd1a3be0d.tar.gz bcm5719-llvm-f7c5e6c0ad5713128bb0553f58bd5b4bd1a3be0d.zip |
[JITLink] Update BuildingAJIT tutorials to account for API changes in r358818.
DynamicLibrarySearchGenerator::GetForCurrentProcess now takes a char (the global
prefix) rather than a DataLayout reference.
llvm-svn: 358820
Diffstat (limited to 'llvm/examples')
-rw-r--r-- | llvm/examples/Kaleidoscope/BuildingAJIT/Chapter1/KaleidoscopeJIT.h | 3 | ||||
-rw-r--r-- | llvm/examples/Kaleidoscope/BuildingAJIT/Chapter2/KaleidoscopeJIT.h | 3 |
2 files changed, 4 insertions, 2 deletions
diff --git a/llvm/examples/Kaleidoscope/BuildingAJIT/Chapter1/KaleidoscopeJIT.h b/llvm/examples/Kaleidoscope/BuildingAJIT/Chapter1/KaleidoscopeJIT.h index 25535bff432..643f65ad3b6 100644 --- a/llvm/examples/Kaleidoscope/BuildingAJIT/Chapter1/KaleidoscopeJIT.h +++ b/llvm/examples/Kaleidoscope/BuildingAJIT/Chapter1/KaleidoscopeJIT.h @@ -47,7 +47,8 @@ public: DL(std::move(DL)), Mangle(ES, this->DL), Ctx(llvm::make_unique<LLVMContext>()) { ES.getMainJITDylib().setGenerator( - cantFail(DynamicLibrarySearchGenerator::GetForCurrentProcess(DL))); + cantFail(DynamicLibrarySearchGenerator::GetForCurrentProcess( + DL.getGlobalPrefix()))); } static Expected<std::unique_ptr<KaleidoscopeJIT>> Create() { diff --git a/llvm/examples/Kaleidoscope/BuildingAJIT/Chapter2/KaleidoscopeJIT.h b/llvm/examples/Kaleidoscope/BuildingAJIT/Chapter2/KaleidoscopeJIT.h index 783ef7399f5..1b04cfbdd27 100644 --- a/llvm/examples/Kaleidoscope/BuildingAJIT/Chapter2/KaleidoscopeJIT.h +++ b/llvm/examples/Kaleidoscope/BuildingAJIT/Chapter2/KaleidoscopeJIT.h @@ -54,7 +54,8 @@ public: DL(std::move(DL)), Mangle(ES, this->DL), Ctx(llvm::make_unique<LLVMContext>()) { ES.getMainJITDylib().setGenerator( - cantFail(DynamicLibrarySearchGenerator::GetForCurrentProcess(DL))); + cantFail(DynamicLibrarySearchGenerator::GetForCurrentProcess( + DL.getGlobalPrefix()))); } const DataLayout &getDataLayout() const { return DL; } |