mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-11-06 21:05:51 +00:00
9 lines
287 B
ArmAsm
9 lines
287 B
ArmAsm
|
@ RUN: llvm-mc -triple thumb-apple-darwin10 -show-encoding < %s 2> %t | FileCheck %s
|
||
|
@ RUN: FileCheck --check-prefix=CHECK-WARNINGS < %t %s
|
||
|
|
||
|
push {r7, lr}
|
||
|
@ CHECK-WARNINGS: register not in ascending order in register list
|
||
|
|
||
|
push {lr, r7}
|
||
|
@ CHECK: push {lr, r7}
|