You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
59 lines
1.1 KiB
59 lines
1.1 KiB
4 months ago
|
# 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: ]
|
||
|
|