1; RUN: lli -jit-kind=orc-lazy -orc-lazy-debug=mods-to-stdout %s | FileCheck %s 2; 3; CHECK: module-flags.ll.globals 4; CHECK-NOT: Module End 5; CHECK: The Answer is {{.*}}42 6 7define i32 @main() { 8 ret i32 0 9} 10 11!llvm.module.flags = !{!0} 12 13!0 = !{i32 1, !"The Answer is ", i32 42} 14