1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-19 19:12:56 +02:00
llvm-mirror/test/tools/llvm-objdump/XCOFF/print-reloc.test
jasonliu f37e3c14a5 [llvm-objdump][XCOFF][AIX] Implement -r option
Summary:
Implement several XCOFF hooks to get '-r' option working for llvm-objdump -r.

Reviewer: DiggerLin, hubert.reinterpretcast, jhenderson, MaskRay

Differential Revision: https://reviews.llvm.org/D75131
2020-03-27 16:05:42 +00:00

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: