mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-24 11:42:57 +01:00
b2d3b0af04
We use both -long-option and --long-option in tests. Switch to --long-option for consistency. In the "llvm-readelf" mode, -long-option is discouraged as it conflicts with grouped short options and it is not accepted by GNU readelf. While updating the tests, change llvm-readobj -s to llvm-readobj -S to reduce confusion ("s" is --section-headers in llvm-readobj but --symbols in llvm-readelf). llvm-svn: 359649
46 lines
1.4 KiB
Plaintext
46 lines
1.4 KiB
Plaintext
# Check that llvm-readobj --mips-plt-got correctly shows .got section
|
|
# content if there are some other zero-sized sections with the same
|
|
# address as the .got. got-over.exe.elf-mips has zero-sized .data
|
|
# section at the same offset .got section.
|
|
|
|
RUN: llvm-readobj --mips-plt-got %p/Inputs/got-over.exe.elf-mips | FileCheck %s
|
|
|
|
GOT-OBJ: Cannot find PLTGOT dynamic table tag.
|
|
|
|
CHECK: Primary GOT {
|
|
CHECK-NEXT: Canonical gp value: 0x418270
|
|
CHECK-NEXT: Reserved entries [
|
|
CHECK-NEXT: Entry {
|
|
CHECK-NEXT: Address: 0x410280
|
|
CHECK-NEXT: Access: -32752
|
|
CHECK-NEXT: Initial: 0x0
|
|
CHECK-NEXT: Purpose: Lazy resolver
|
|
CHECK-NEXT: }
|
|
CHECK-NEXT: Entry {
|
|
CHECK-NEXT: Address: 0x410284
|
|
CHECK-NEXT: Access: -32748
|
|
CHECK-NEXT: Initial: 0x80000000
|
|
CHECK-NEXT: Purpose: Module pointer (GNU extension)
|
|
CHECK-NEXT: }
|
|
CHECK-NEXT: ]
|
|
CHECK-NEXT: Local entries [
|
|
CHECK-NEXT: Entry {
|
|
CHECK-NEXT: Address: 0x410288
|
|
CHECK-NEXT: Access: -32744
|
|
CHECK-NEXT: Initial: 0x4001B8
|
|
CHECK-NEXT: }
|
|
CHECK-NEXT: ]
|
|
CHECK-NEXT: Global entries [
|
|
CHECK-NEXT: Entry {
|
|
CHECK-NEXT: Address: 0x41028C
|
|
CHECK-NEXT: Access: -32740
|
|
CHECK-NEXT: Initial: 0x0
|
|
CHECK-NEXT: Value: 0x0
|
|
CHECK-NEXT: Type: None
|
|
CHECK-NEXT: Section: Undefined
|
|
CHECK-NEXT: Name: _foo
|
|
CHECK-NEXT: }
|
|
CHECK-NEXT: ]
|
|
CHECK-NEXT: Number of TLS and multi-GOT entries: 0
|
|
CHECK-NEXT: }
|