Home | History | Annotate | Download | only in ARM
      1 @ RUN: llvm-mc %s -triple armv7-linux-gnueabi -filetype asm -o - | FileCheck %s
      2 
      3 	.syntax unified
      4 	.thumb
      5 
      6 	.p2align 2
      7 	.global emit_asm
      8 	.type emit_asm,%function
      9 emit_asm:
     10 	.inst.w 0xf2400000, 0xf2c00000
     11 
     12 @ CHECK: 	.text
     13 @ CHECK: 	.code	16
     14 @ CHECK: 	.p2align	2
     15 @ CHECK: 	.globl	emit_asm
     16 @ CHECK: 	.type	emit_asm,%function
     17 @ CHECK: emit_asm:
     18 @ CHECK: 	inst.w 0xf2400000
     19 @ CHECK: 	inst.w 0xf2c00000
     20 
     21