1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-21 03:53:04 +02:00
llvm-mirror/test/MC/Mips/micromips-label-test.s
Simon Atanasyan a5a68b8d26 [llvm-readobj] Decode st_other symbol's flags
The patch supports common STV_xxx visibility flags and MIPS specific
STO_MIPS_xxx flags.

Differential Revision: http://reviews.llvm.org/D18447

llvm-svn: 264300
2016-03-24 16:10:37 +00:00

59 lines
1.1 KiB
ArmAsm

# RUN: llvm-mc %s -triple=mipsel-unknown-linux -mcpu=mips32r2 \
# RUN: -mattr=+micromips -filetype=obj -o - | llvm-readobj -t | FileCheck %s
.text
.set nomicromips
f:
nop
g:
.set micromips
nop
h:
.word 0
i:
nop
j:
.set nomicromips
nop
# CHECK: Symbols [
# CHECK: Symbol {
# CHECK: Name: f
# CHECK: Binding: Local
# CHECK: Type: None
# CHECK: Other: 0
# CHECK: Section: .text
# CHECK: }
# CHECK: Symbol {
# CHECK: Name: g
# CHECK: Binding: Local
# CHECK: Type: None
# CHECK: Other [ (0x80)
# CHECK: STO_MIPS_MICROMIPS
# CHECK: ]
# CHECK: Section: .text
# CHECK: }
# CHECK: Symbol {
# CHECK: Name: h
# CHECK: Binding: Local
# CHECK: Type: None
# CHECK: Other: 0
# CHECK: Section: .text
# CHECK: }
# CHECK: Symbol {
# CHECK: Name: i
# CHECK: Binding: Local
# CHECK: Type: None
# CHECK: Other [ (0x80)
# CHECK: STO_MIPS_MICROMIPS
# CHECK: ]
# CHECK: Section: .text
# CHECK: }
# CHECK: Symbol {
# CHECK: Name: j
# CHECK: Binding: Local
# CHECK: Type: None
# CHECK: Other: 0
# CHECK: Section: .text
# CHECK: }
# CHECK: ]