forked from OSchip/llvm-project
32 lines
1.0 KiB
Plaintext
32 lines
1.0 KiB
Plaintext
# REQUIRES: powerpc-registered-target
|
|
|
|
# RUN: llvm-objdump -r %p/Inputs/xcoff-section-headers.o | \
|
|
# RUN: FileCheck --match-full-lines --strict-whitespace %s
|
|
|
|
## xcoff-section-headers.o Compiled with IBM XL C/C++ for AIX, V16.1.0
|
|
## compiler command: xlc -qtls -o xcoff-section-headers.o -c test.c
|
|
## test.c:
|
|
## int a;
|
|
## int b = 12345;
|
|
## __thread int c;
|
|
## __thread double d = 3.14159;
|
|
##
|
|
## int func(void) {
|
|
## return a;
|
|
## }
|
|
|
|
CHECK:RELOCATION RECORDS FOR [.text]:
|
|
CHECK-NEXT:OFFSET TYPE VALUE
|
|
CHECK-NEXT:00000002 R_TOC a
|
|
CHECK-EMPTY:
|
|
CHECK:RELOCATION RECORDS FOR [.data]:
|
|
CHECK-NEXT:OFFSET TYPE VALUE
|
|
CHECK-NEXT:00000000 R_POS func
|
|
CHECK-NEXT:00000004 R_POS a
|
|
CHECK-NEXT:00000008 R_POS b
|
|
CHECK-NEXT:0000000c R_TLS c
|
|
CHECK-NEXT:00000010 R_TLS d
|
|
CHECK-NEXT:00000014 R_POS .func
|
|
CHECK-NEXT:00000018 R_POS TOC
|
|
CHECK-EMPTY:
|