aboutsummaryrefslogtreecommitdiff
path: root/llvm/test/MC/ELF/empty-dwarf-lines.s
blob: d694ea9f26b8200238bc893b5c0899bdd3a1b77f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
// RUN: llvm-mc -filetype=obj -triple x86_64-pc-linux-gnu %s -o - | llvm-readobj -S - | FileCheck %s

// Test that the dwarf debug_line section contains no line directives.

        .file   1 "test.c"
        .globl  c
c:
        .asciz   "hi\n"

// CHECK:        Section {
// CHECK:          Index:
// CHECK:          Name: .debug_line
// CHECK-NEXT:     Type: SHT_PROGBITS
// CHECK-NEXT:     Flags [
// CHECK-NEXT:     ]
// CHECK-NEXT:     Address: 0x0
// CHECK-NEXT:     Offset: 0x44
// CHECK-NEXT:     Size: 40
// CHECK-NEXT:     Link: 0
// CHECK-NEXT:     Info: 0
// CHECK-NEXT:     AddressAlignment: 1
// CHECK-NEXT:     EntrySize: 0
// CHECK-NEXT:   }