1# RUN: llvm-mc -filetype=obj -triple mipsel-unknown-linux -mcpu=mips32 %s -o - \
2# RUN:   | llvm-readobj --symbols - | FileCheck %s
3
4# Symbol bar must be marked as micromips.
5# CHECK: Name: bar
6# CHECK: Other [ (0x80)
7  .align 2
8  .type  f,@function
9  .set   nomips16
10  .set   micromips
11f:
12  nop
13  .set   nomicromips
14  nop
15  .globl bar
16bar = f
17
18# CHECK: Name: foo
19# CHECK: Other [ (0x80)
20  .type  o,@object
21  .set   micromips
22o:
23  .insn
24  .word 0x00000000
25  .set   nomicromips
26
27  .globl foo
28foo = o
29