mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-11-04 06:09:05 +00:00
7caebff83d
enum values we give to them. <rdar://problem/8823730> git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@123321 91177308-0d34-0410-b5e6-96231b3b80d8
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}
|