DebugInfo: Move new hierarchy into place
[oota-llvm.git] / test / DebugInfo / X86 / multiple-aranges.ll
1 ; RUN: llc -generate-arange-section < %s | FileCheck %s
2
3 ; First CU
4 ; CHECK:      .long   44                      # Length of ARange Set
5 ; CHECK-NEXT: .short  2                       # DWARF Arange version number
6 ; CHECK-NEXT: .long   .L.debug_info_begin0    # Offset Into Debug Info Section
7 ; CHECK-NEXT: .byte   8                       # Address Size (in bytes)
8 ; CHECK-NEXT: .byte   0                       # Segment Size (in bytes)
9 ; CHECK-NEXT: .zero   4,255
10 ; CHECK-NEXT: .quad   kittens
11 ; CHECK-NEXT: .quad   rainbows-kittens
12 ; CHECK-NEXT: .quad   0                       # ARange terminator
13 ; CHECK-NEXT: .quad   0
14
15 ; Second CU
16 ; CHECK-NEXT: .long   44                      # Length of ARange Set
17 ; CHECK-NEXT: .short  2                       # DWARF Arange version number
18 ; CHECK-NEXT: .long   .L.debug_info_begin1    # Offset Into Debug Info Section
19 ; CHECK-NEXT: .byte   8                       # Address Size (in bytes)
20 ; CHECK-NEXT: .byte   0                       # Segment Size (in bytes)
21 ; CHECK-NEXT: .zero   4,255
22 ; CHECK-NEXT: .quad   rainbows
23 ; CHECK-NEXT: .quad   .Ldebug_end0-rainbows
24 ; CHECK-NEXT: .quad   0                       # ARange terminator
25 ; CHECK-NEXT: .quad   0
26
27
28 ; Generated from: clang -c -g -emit-llvm
29 ;                 llvm-link test1.bc test2.bc -o test.bc
30 ; test1.c: int kittens = 4;
31 ; test2.c: int rainbows = 5;
32
33
34
35
36 ; ModuleID = 'test.bc'
37 target triple = "x86_64-unknown-linux-gnu"
38
39 @kittens = global i32 4, align 4
40 @rainbows = global i32 5, align 4
41
42 !llvm.dbg.cu = !{!0, !7}
43 !llvm.module.flags = !{!12, !13}
44
45 !0 = !MDCompileUnit(language: DW_LANG_C99, producer: "clang version 3.4 ", isOptimized: false, emissionKind: 0, file: !1, enums: !2, retainedTypes: !2, subprograms: !2, globals: !3, imports: !2)
46 !1 = !MDFile(filename: "test1.c", directory: "/home/kayamon")
47 !2 = !{}
48 !3 = !{!4}
49 !4 = !MDGlobalVariable(name: "kittens", line: 1, isLocal: false, isDefinition: true, scope: null, file: !5, type: !6, variable: i32* @kittens)
50 !5 = !MDFile(filename: "test1.c", directory: "/home/kayamon")
51 !6 = !MDBasicType(tag: DW_TAG_base_type, name: "int", size: 32, align: 32, encoding: DW_ATE_signed)
52 !7 = !MDCompileUnit(language: DW_LANG_C99, producer: "clang version 3.4 ", isOptimized: false, emissionKind: 0, file: !8, enums: !2, retainedTypes: !2, subprograms: !2, globals: !9, imports: !2)
53 !8 = !MDFile(filename: "test2.c", directory: "/home/kayamon")
54 !9 = !{!10}
55 !10 = !MDGlobalVariable(name: "rainbows", line: 1, isLocal: false, isDefinition: true, scope: null, file: !11, type: !6, variable: i32* @rainbows)
56 !11 = !MDFile(filename: "test2.c", directory: "/home/kayamon")
57 !12 = !{i32 2, !"Dwarf Version", i32 4}
58 !13 = !{i32 1, !"Debug Info Version", i32 3}