• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
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 !MDSubprogram()
10!1 = distinct !{}
11!2 = !MDFile(filename: "path/to/file", directory: "/path/to/dir")
12!3 = !MDBasicType(name: "int", size: 32, align: 32, encoding: DW_ATE_signed)
13!4 = !MDLocation(scope: !0)
14
15; CHECK: !5 = !MDLocalVariable(tag: DW_TAG_arg_variable, name: "foo", arg: 3, scope: !0, file: !2, line: 7, type: !3, flags: DIFlagArtificial)
16; CHECK: !6 = !MDLocalVariable(tag: DW_TAG_auto_variable, name: "foo", scope: !0, file: !2, line: 7, type: !3, flags: DIFlagArtificial)
17!5 = !MDLocalVariable(tag: DW_TAG_arg_variable, name: "foo", arg: 3,
18                      scope: !0, file: !2, line: 7, type: !3,
19                      flags: DIFlagArtificial)
20!6 = !MDLocalVariable(tag: DW_TAG_auto_variable, name: "foo", scope: !0,
21                      file: !2, line: 7, type: !3, flags: DIFlagArtificial)
22
23; CHECK: !7 = !MDLocalVariable(tag: DW_TAG_arg_variable, arg: 0, scope: !0)
24; CHECK: !8 = !MDLocalVariable(tag: DW_TAG_auto_variable, scope: !0)
25!7 = !MDLocalVariable(tag: DW_TAG_arg_variable, scope: !0)
26!8 = !MDLocalVariable(tag: DW_TAG_auto_variable, scope: !0)
27