1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2025-01-31 20:51:52 +01:00
llvm-mirror/test/MC/Mips/micromips-alias.s
Fangrui Song 28e82b6565 [llvm-readobj] Change -t to --symbols in tests. NFC
-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
2019-05-01 09:28:24 +00:00

29 lines
497 B
ArmAsm

# RUN: llvm-mc -filetype=obj -triple mipsel-unknown-linux -mcpu=mips32 %s -o - \
# RUN: | llvm-readobj --symbols | FileCheck %s
# Symbol bar must be marked as micromips.
# CHECK: Name: bar
# CHECK: Other [ (0x80)
.align 2
.type f,@function
.set nomips16
.set micromips
f:
nop
.set nomicromips
nop
.globl bar
bar = f
# CHECK: Name: foo
# CHECK: Other [ (0x80)
.type o,@object
.set micromips
o:
.insn
.word 0x00000000
.set nomicromips
.globl foo
foo = o