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.
21 lines
399 B
21 lines
399 B
@ RUN: llvm-mc %s -triple armv7-linux-gnueabi -filetype asm -o - | FileCheck %s
|
|
|
|
.syntax unified
|
|
.thumb
|
|
|
|
.p2align 2
|
|
.global emit_asm
|
|
.type emit_asm,%function
|
|
emit_asm:
|
|
.inst.w 0xf2400000, 0xf2c00000
|
|
|
|
@ CHECK: .text
|
|
@ CHECK: .code 16
|
|
@ CHECK: .p2align 2
|
|
@ CHECK: .globl emit_asm
|
|
@ CHECK: .type emit_asm,%function
|
|
@ CHECK: emit_asm:
|
|
@ CHECK: inst.w 0xf2400000
|
|
@ CHECK: inst.w 0xf2c00000
|
|
|