[ARM] Add v8.1a "Rounding Double Multiply Add/Subtract" extension
[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 = distinct !{}
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, name: "foo", arg: 3, scope: !0, file: !2, line: 7, type: !3, flags: DIFlagArtificial, inlinedAt: !4)
16 ; CHECK: !6 = !MDLocalVariable(tag: DW_TAG_auto_variable, name: "foo", scope: !0, file: !2, line: 7, type: !3, flags: DIFlagArtificial, inlinedAt: !4)
17 !5 = !MDLocalVariable(tag: DW_TAG_arg_variable, name: "foo", arg: 3,
18                       scope: !0, file: !2, line: 7, type: !3,
19                       flags: DIFlagArtificial, inlinedAt: !4)
20 !6 = !MDLocalVariable(tag: DW_TAG_auto_variable, name: "foo", scope: !0,
21                       file: !2, line: 7, type: !3, flags: DIFlagArtificial, inlinedAt: !4)
22
23 ; CHECK: !7 = !MDLocalVariable(tag: DW_TAG_arg_variable, arg: 0, scope: null)
24 ; CHECK: !8 = !MDLocalVariable(tag: DW_TAG_auto_variable, scope: null)
25 !7 = !MDLocalVariable(tag: DW_TAG_arg_variable)
26 !8 = !MDLocalVariable(tag: DW_TAG_auto_variable)