• 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 !DISubprogram()
10!1 = distinct !{}
11!2 = !DIFile(filename: "path/to/file", directory: "/path/to/dir")
12!3 = !DIBasicType(name: "int", size: 32, align: 32, encoding: DW_ATE_signed)
13!4 = !DILocation(scope: !0)
14
15; CHECK: !5 = !DILocalVariable(name: "foo", arg: 3, scope: !0, file: !2, line: 7, type: !3, flags: DIFlagArtificial)
16; CHECK: !6 = !DILocalVariable(name: "foo", scope: !0, file: !2, line: 7, type: !3, flags: DIFlagArtificial)
17!5 = !DILocalVariable(name: "foo", arg: 3,
18                      scope: !0, file: !2, line: 7, type: !3,
19                      flags: DIFlagArtificial)
20!6 = !DILocalVariable(name: "foo", scope: !0,
21                      file: !2, line: 7, type: !3, flags: DIFlagArtificial)
22
23; CHECK: !7 = !DILocalVariable(arg: 1, scope: !0)
24; CHECK: !8 = !DILocalVariable(scope: !0)
25!7 = !DILocalVariable(scope: !0, arg: 1)
26!8 = !DILocalVariable(scope: !0)
27