From: NAKAMURA Takumi Date: Mon, 20 Feb 2017 09:56:24 +0000 (+0000) Subject: llvm/examples/Kaleidoscope/include/KaleidoscopeJIT.h: Fixup corresponding to r295636. X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=19dff40fd1c8581c609585a167f92c5b7678d556;p=llvm llvm/examples/Kaleidoscope/include/KaleidoscopeJIT.h: Fixup corresponding to r295636. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@295645 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/examples/Kaleidoscope/include/KaleidoscopeJIT.h b/examples/Kaleidoscope/include/KaleidoscopeJIT.h index 77e21bb4aeb..1dca39deba3 100644 --- a/examples/Kaleidoscope/include/KaleidoscopeJIT.h +++ b/examples/Kaleidoscope/include/KaleidoscopeJIT.h @@ -24,7 +24,7 @@ #include "llvm/ExecutionEngine/Orc/CompileUtils.h" #include "llvm/ExecutionEngine/Orc/IRCompileLayer.h" #include "llvm/ExecutionEngine/Orc/LambdaResolver.h" -#include "llvm/ExecutionEngine/Orc/ObjectLinkingLayer.h" +#include "llvm/ExecutionEngine/Orc/RTDyldObjectLinkingLayer.h" #include "llvm/IR/DataLayout.h" #include "llvm/IR/Mangler.h" #include "llvm/Support/DynamicLibrary.h" @@ -40,7 +40,7 @@ namespace orc { class KaleidoscopeJIT { public: - typedef ObjectLinkingLayer<> ObjLayerT; + typedef RTDyldObjectLinkingLayer<> ObjLayerT; typedef IRCompileLayer CompileLayerT; typedef CompileLayerT::ModuleSetHandleT ModuleHandleT;