AsmWriter/Bitcode: MDLocalVariable
[oota-llvm.git] / test / Assembler / mdlocalvariable.ll
1 ; RUN: llvm-as < %s | llvm-dis | llvm-as | llvm-dis | FileCheck %s
2 ; RUN: verify-uselistorder %s
3
4 @foo = global i32 0
5
6 ; CHECK: !named = !{!0, !1, !2, !3, !4, !5, !6, !7, !8}
7 !named = !{!0, !1, !2, !3, !4, !5, !6, !7, !8}
8
9 !0 = distinct !{}
10 !1 = !{!"path/to/file", !"/path/to/dir"}
11 !2 = !MDFile(filename: "path/to/file", directory: "/path/to/dir")
12 !3 = distinct !{}
13 !4 = distinct !{}
14
15 ; CHECK: !5 = !MDLocalVariable(tag: DW_TAG_arg_variable, scope: !0, name: "foo", file: !1, line: 7, type: !3, arg: 3, flags: 8, inlinedAt: !4)
16 ; CHECK: !6 = !MDLocalVariable(tag: DW_TAG_auto_variable, scope: !0, name: "foo", file: !1, line: 7, type: !3, flags: 8, inlinedAt: !4)
17 !5 = !MDLocalVariable(tag: DW_TAG_arg_variable, scope: !0, name: "foo",
18                       file: !1, line: 7, type: !3, arg: 3,
19                       flags: 8, inlinedAt: !4)
20 !6 = !MDLocalVariable(tag: DW_TAG_auto_variable, scope: !0, name: "foo",
21                       file: !1, line: 7, type: !3, flags: 8, inlinedAt: !4)
22
23 ; CHECK: !7 = !MDLocalVariable(tag: DW_TAG_arg_variable, scope: null, name: "", arg: 0)
24 ; CHECK: !8 = !MDLocalVariable(tag: DW_TAG_auto_variable, scope: null, name: "")
25 !7 = !MDLocalVariable(tag: DW_TAG_arg_variable)
26 !8 = !MDLocalVariable(tag: DW_TAG_auto_variable)