mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-25 20:23:11 +01:00
eba22b7e3c
.MIPS.options section specifies miscellaneous options to be applied to an object file. LLVM as well as modern versions of GNU tools emit the only type of the options - ODK_REGINFO. The patch teaches llvm-readobj to print details of the ODK_REGINFO and skip contents of other options. llvm-svn: 268478
13 lines
371 B
Plaintext
13 lines
371 B
Plaintext
RUN: llvm-readobj -mips-options %p/Inputs/options.obj.elf-mipsel | FileCheck %s
|
|
|
|
CHECK: MIPS Options {
|
|
CHECK-NEXT: ODK_REGINFO {
|
|
CHECK-NEXT: GP: 0x0
|
|
CHECK-NEXT: General Mask: 0xF2000017
|
|
CHECK-NEXT: Co-Proc Mask0: 0x0
|
|
CHECK-NEXT: Co-Proc Mask1: 0x0
|
|
CHECK-NEXT: Co-Proc Mask2: 0x0
|
|
CHECK-NEXT: Co-Proc Mask3: 0x0
|
|
CHECK-NEXT: }
|
|
CHECK-NEXT: }
|