1; This test checks emission of .debug_macro section when
2; -gdwarf-5 -fdebug-macro is specified.
3
4; RUN: llc -dwarf-version=5 -O0 -filetype=obj < %s | llvm-dwarfdump -v - | FileCheck %s
5
6; CHECK-LABEL:  .debug_info contents:
7; CHECK: DW_AT_macros [DW_FORM_sec_offset] (0x00000000)
8
9; CHECK-LABEL:  .debug_macro contents:
10; CHECK-NEXT: 0x00000000:
11; CHECK-NEXT: macro header: version = 0x0005, flags = 0x02, format = DWARF32, debug_line_offset = 0x00000000
12; CHECK-NEXT: DW_MACRO_start_file - lineno: 0 filenum: 0
13; CHECK-NEXT:   DW_MACRO_start_file - lineno: 1 filenum: 1
14; CHECK-NEXT:     DW_MACRO_define_strx - lineno: 1 macro: FOO 5
15; CHECK-NEXT:   DW_MACRO_end_file
16; CHECK-NEXT:   DW_MACRO_start_file - lineno: 2 filenum: 2
17; CHECK-NEXT:     DW_MACRO_undef_strx - lineno: 14 macro: YEA
18; CHECK-NEXT:   DW_MACRO_end_file
19; CHECK-NEXT:   DW_MACRO_undef_strx - lineno: 14 macro: YEA
20; CHECK-NEXT: DW_MACRO_end_file
21
22; ModuleID = 'test.c'
23source_filename = "test.c"
24target datalayout = "e-m:e-p200:32:32-p201:32:32-p202:64:64-i64:64-f80:128-n8:16:32:64-S128"
25target triple = "x86_64-unknown-linux-gnu"
26
27!llvm.dbg.cu = !{!0}
28!llvm.module.flags = !{!14, !15, !16}
29!llvm.ident = !{!17}
30
31!0 = distinct !DICompileUnit(language: DW_LANG_C99, file: !1, producer: "clang version 10.0.0", isOptimized: false, runtimeVersion: 0, emissionKind: FullDebug, enums: !2, macros: !3, splitDebugInlining: false, nameTableKind: None)
32!1 = !DIFile(filename: "test.c", directory: "/home/", checksumkind: CSK_MD5, checksum: "ef6a7032e0c7ceeef614583f2c00dc80")
33!2 = !{}
34!3 = !{!4}
35!4 = !DIMacroFile(file: !1, nodes: !5)
36!5 = !{!6, !10, !13}
37!6 = !DIMacroFile(line: 1, file: !7, nodes: !8)
38!7 = !DIFile(filename: "./foo.h", directory: "/home/", checksumkind: CSK_MD5, checksum: "0f0cd0e15b44f49d3944992c8dc28661")
39!8 = !{!9}
40!9 = !DIMacro(type: DW_MACINFO_define, line: 1, name: "FOO", value: "5")
41!10 = !DIMacroFile(line: 2, file: !11, nodes: !12)
42!11 = !DIFile(filename: "./bar.h", directory: "/home/", checksumkind: CSK_MD5, checksum: "bf4b34c263eaaa1d7085c18243b8d100")
43!12 = !{!13}
44!13 = !DIMacro(type: DW_MACINFO_undef, line: 14, name: "YEA")
45!14 = !{i32 7, !"Dwarf Version", i32 5}
46!15 = !{i32 2, !"Debug Info Version", i32 3}
47!16 = !{i32 1, !"wchar_size", i32 4}
48!17 = !{!"clang version 10.0.0"}
49