summaryrefslogtreecommitdiff
path: root/test/MC/ARM/inst-directive-emit.s
blob: 13b7edfa1f3a57ecf3d4ecb04f0fcd2b0b37afd7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
@ RUN: llvm-mc %s -triple armv7-linux-gnueabi -filetype asm -o - | FileCheck %s

	.syntax unified
	.thumb

	.align 2
	.global emit_asm
	.type emit_asm,%function
emit_asm:
	.inst.w 0xf2400000, 0xf2c00000

@ CHECK: 	.text
@ CHECK: 	.code	16
@ CHECK: 	.align	2
@ CHECK: 	.globl	emit_asm
@ CHECK: 	.type	emit_asm,%function
@ CHECK: emit_asm:
@ CHECK: 	inst.w 0xF2400000
@ CHECK: 	inst.w 0xF2C00000