mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-25 04:02:41 +01:00
28e82b6565
-t is --symbols in llvm-readobj but --section-details (unimplemented) in readelf. The confusing option should not be used since we aim for improving compatibility. Keep just one llvm-readobj -t use case in test/tools/llvm-readobj/symbols.test llvm-svn: 359661
40 lines
823 B
ArmAsm
40 lines
823 B
ArmAsm
# RUN: llvm-mc %s -triple=mipsel-unknown-linux -mcpu=mips32r2 \
|
|
# RUN: -mattr=+micromips -filetype=obj -o - | llvm-readobj --symbols | FileCheck %s
|
|
.text
|
|
.set micromips
|
|
f:
|
|
nop
|
|
g:
|
|
.section .text
|
|
h:
|
|
nop
|
|
|
|
# CHECK: Symbols [
|
|
# CHECK: Symbol {
|
|
# CHECK: Name: f
|
|
# CHECK: Binding: Local
|
|
# CHECK: Type: None
|
|
# CHECK: Other [ (0x80)
|
|
# CHECK: STO_MIPS_MICROMIPS
|
|
# CHECK: ]
|
|
# CHECK: Section: .text
|
|
# CHECK: }
|
|
# CHECK: Symbol {
|
|
# CHECK: Name: g
|
|
# CHECK: Binding: Local
|
|
# CHECK: Type: None
|
|
# CHECK: Other: 0
|
|
# CHECK: Section: .text
|
|
# CHECK: }
|
|
# CHECK: Symbol {
|
|
# CHECK: Name: h
|
|
# CHECK: Binding: Local
|
|
# CHECK: Type: None
|
|
# CHECK: Other [ (0x80)
|
|
# CHECK: STO_MIPS_MICROMIPS
|
|
# CHECK: ]
|
|
# CHECK: Section: .text
|
|
# CHECK: }
|
|
# CHECK: ]
|
|
|