• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1// RUN: llvm-dwarfdump -debug-dump=info %p/Inputs/dwarfdump-macho-relocs.macho.x86_64.o | FileCheck %s
2
3// The dumped file has 2 functions in different sections of the __TEXT segment.
4// Check that the addresses are are dumped correctly
5
6// Compiled with: clang -x c -g -c -o dwarfdump-macho-relocs.macho.x86_64.o dwarfdump-macho-relocs.test
7
8__attribute__((section("__TEXT,__blah")))
9int foo() {
10        return 42;
11}
12
13// CHECK:  DW_TAG_subprogram
14// CHECK-NEXT:    DW_AT_low_pc{{.*}}0x0000000000000020
15// CHECK-NEXT:    DW_AT_high_pc{{.*}}0x000000000000002b
16// CHECK-NEXT:    DW_AT_frame_base
17// CHECK-NEXT:    DW_AT_name{{.*}}"foo"
18
19int main() {
20        return foo();
21}
22
23// CHECK:  DW_TAG_subprogram
24// CHECK-NEXT:    DW_AT_low_pc{{.*}}0x0000000000000000
25// CHECK-NEXT:    DW_AT_high_pc{{.*}}0x000000000000001a
26// CHECK-NEXT:    DW_AT_frame_base
27// CHECK-NEXT:    DW_AT_name{{.*}}"main"
28