mirror of
https://github.com/RPCS3/llvm.git
synced 2026-01-31 01:25:19 +01:00
CompileOnDemandLayer. Also contains a tweak to the orc-lazy jit in LLI to enable the test case. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@280632 91177308-0d34-0410-b5e6-96231b3b80d8
14 lines
276 B
LLVM
14 lines
276 B
LLVM
; RUN: lli -jit-kind=orc-lazy -orc-lazy-debug=mods-to-stdout %s | FileCheck %s
|
|
;
|
|
; CHECK: module-flags.ll.globals
|
|
; CHECK-NOT: Module End
|
|
; CHECK: The Answer is {{.*}}42
|
|
|
|
define i32 @main() {
|
|
ret i32 0
|
|
}
|
|
|
|
!llvm.module.flags = !{!0}
|
|
|
|
!0 = !{i32 1, !"The Answer is ", i32 42}
|