diff options
Diffstat (limited to 'llvm/test/MC/WebAssembly/compile-twice.ll')
-rw-r--r-- | llvm/test/MC/WebAssembly/compile-twice.ll | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/llvm/test/MC/WebAssembly/compile-twice.ll b/llvm/test/MC/WebAssembly/compile-twice.ll new file mode 100644 index 00000000000..5fc3a04eacc --- /dev/null +++ b/llvm/test/MC/WebAssembly/compile-twice.ll @@ -0,0 +1,14 @@ +; Check that there is no persistent state in the WabAssembly emitter that cause +; issues when reusing the pass manager. +; RUN: llc -mtriple=wasm32-unknown-unknown -compile-twice -filetype=obj %s -o - + +; Force the creation of a DWARF section +!llvm.dbg.cu = !{!0} +!llvm.module.flags = !{!3, !4} + +@myglobal = global i32 0, align 4 + +!0 = distinct !DICompileUnit(language: DW_LANG_C99, file: !1, producer: "LLVM", isOptimized: true, emissionKind: FullDebug) +!1 = !DIFile(filename: "<stdin>", directory: "/") +!3 = !{i32 2, !"Dwarf Version", i32 4} +!4 = !{i32 2, !"Debug Info Version", i32 3} |