mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-23 11:13:28 +01:00
a4cf7de209
llvm-svn: 238102
21 lines
395 B
ArmAsm
21 lines
395 B
ArmAsm
@ 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
|
|
|