コード例 #1
0
ファイル: toy.cpp プロジェクト: IanLee1521/ares
 KaleidoscopeJIT(SessionContext &Session)
     : DL(Session.getTarget().createDataLayout()),
       CompileLayer(ObjectLayer, SimpleCompiler(Session.getTarget())),
       LazyEmitLayer(CompileLayer) {}
コード例 #2
0
ファイル: toy.cpp プロジェクト: RichardsonAlex/llvm-1
 KaleidoscopeJIT(SessionContext &Session)
   : Session(Session),
     CompileLayer(ObjectLayer, SimpleCompiler(Session.getTarget())),
     LazyEmitLayer(CompileLayer) {}
コード例 #3
0
ファイル: toy.cpp プロジェクト: 0x00evil/llvm
 KaleidoscopeJIT(SessionContext &Session)
   : Mang(Session.getTarget().getDataLayout()),
     CompileLayer(ObjectLayer, SimpleCompiler(Session.getTarget())) {}