mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-02-08 06:32:24 +00:00
16 lines
225 B
Plaintext
16 lines
225 B
Plaintext
|
@ RUN: llvm-mc < %s -triple armv7-apple-darwin -filetype=obj | llvm-objdump -m -d - | FileCheck %s
|
||
|
|
||
|
.thumb
|
||
|
.thumb_func _t
|
||
|
_t:
|
||
|
nop
|
||
|
nop
|
||
|
.align 2
|
||
|
.arm
|
||
|
_a:
|
||
|
nop
|
||
|
|
||
|
@ CHECK: 00 bf nop
|
||
|
@ CHECK-NEXT: 00 bf nop
|
||
|
@ CHECK: 00 f0 20 e3 nop
|