1@ RUN: llvm-mc %s -triple armv7-linux-gnueabi -filetype asm -o - \
2@ RUN:   | FileCheck %s
3@ RUN: llvm-mc %s -triple armebv7-linux-gnueabi -filetype asm -o - \
4@ RUN:   | FileCheck %s
5
6	.syntax unified
7	.thumb
8
9	.align 2
10	.global inst_n
11	.type inst_n,%function
12inst_n:
13	@ bx lr, mov.w r0, #42
14	.inst 0x4770, 0xf04f002a
15@ CHECK: .inst.n 0x4770
16@ CHECK: .inst.w 0xf04f002a
17