Home | History | Annotate | Download | only in Assembler
      1 ; RUN: llvm-as < %s | llvm-dis | FileCheck %s
      2 ; RUN: verify-uselistorder %s
      3 
      4 ; CHECK: !named = !{!0, !2, !3, !3, !4, !4, !5, !5, !6}
      5 !named = !{!0, !2, !3, !4, !5, !6, !7, !8, !9}
      6 
      7 !llvm.module.flags = !{!10}
      8 !llvm.dbg.cu = !{!1}
      9 
     10 ; CHECK: !0 = distinct !DISubprogram(
     11 !0 = distinct !DISubprogram(unit: !1)
     12 ; CHECK: !1 = distinct !DICompileUnit
     13 !1 = distinct !DICompileUnit(language: DW_LANG_C99, producer: "clang",
     14                              file: !2,
     15                              isOptimized: true, flags: "-O2",
     16                              splitDebugFilename: "abc.debug", emissionKind: 2)
     17 ; CHECK: !2 = !DIFile
     18 !2 = !DIFile(filename: "path/to/file", directory: "/path/to/dir")
     19 
     20 ; CHECK-NEXT: !3 = !DILocation(line: 3, column: 7, scope: !0)
     21 !3 = !DILocation(line: 3, column: 7, scope: !0)
     22 !4 = !DILocation(scope: !0, column: 7, line: 3)
     23 
     24 ; CHECK-NEXT: !4 = !DILocation(line: 3, column: 7, scope: !0, inlinedAt: !3)
     25 !5 = !DILocation(scope: !0, inlinedAt: !3, column: 7, line: 3)
     26 !6 = !DILocation(column: 7, line: 3, scope: !0, inlinedAt: !3)
     27 
     28 ; CHECK-NEXT: !5 = !DILocation(line: 0, scope: !0)
     29 !7 = !DILocation(scope: !0)
     30 !8 = !DILocation(scope: !0, column: 0, line: 0)
     31 
     32 ; CHECK-NEXT: !6 = !DILocation(line: 4294967295, column: 65535, scope: !0)
     33 !9 = !DILocation(line: 4294967295, column: 65535, scope: !0)
     34 
     35 !10 = !{i32 2, !"Debug Info Version", i32 3}
     36