mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-02-23 05:29:23 +00:00
The assert was off-by-one, resulting in failures for valid input. Thanks to Asiri Rathnayake for pointing out the failure! git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@224432 91177308-0d34-0410-b5e6-96231b3b80d8
154 lines
3.8 KiB
ArmAsm
154 lines
3.8 KiB
ArmAsm
@ RUN: llvm-mc -triple armv7-linux-eabi -filetype asm -o /dev/null %s 2>&1 \
|
|
@ RUN: | FileCheck %s
|
|
|
|
.syntax unified
|
|
.arm
|
|
|
|
.global stm
|
|
.type stm,%function
|
|
stm:
|
|
stm sp!, {r0, pc}
|
|
@ CHECK: warning: use of SP or PC in the list is deprecated
|
|
@ CHECK: stm sp!, {r0, pc}
|
|
@ CHECK: ^
|
|
stm r0!, {r0, sp}
|
|
@ CHECK: warning: use of SP or PC in the list is deprecated
|
|
@ CHECK: stm r0!, {r0, sp}
|
|
@ CHECK: ^
|
|
stm r1!, {r0, sp, pc}
|
|
@ CHECK: warning: use of SP or PC in the list is deprecated
|
|
@ CHECK: stm r1!, {r0, sp, pc}
|
|
@ CHECK: ^
|
|
stm r2!, {sp, pc}
|
|
@ CHECK: warning: use of SP or PC in the list is deprecated
|
|
@ CHECK: stm r2!, {sp, pc}
|
|
@ CHECK: ^
|
|
stm sp!, {pc}
|
|
@ CHECK: warning: use of SP or PC in the list is deprecated
|
|
@ CHECK: stm sp!, {pc}
|
|
@ CHECK: ^
|
|
stm r0!, {sp}
|
|
@ CHECK: warning: use of SP or PC in the list is deprecated
|
|
@ CHECK: stm r0!, {sp}
|
|
@ CHECK: ^
|
|
|
|
.global stmda
|
|
.type stmda,%function
|
|
stmda:
|
|
stmda sp!, {r0, pc}
|
|
@ CHECK: warning: use of SP or PC in the list is deprecated
|
|
@ CHECK: stmda sp!, {r0, pc}
|
|
@ CHECK: ^
|
|
stmda r0!, {r0, sp}
|
|
@ CHECK: warning: use of SP or PC in the list is deprecated
|
|
@ CHECK: stmda r0!, {r0, sp}
|
|
@ CHECK: ^
|
|
stmda r1!, {r0, sp, pc}
|
|
@ CHECK: warning: use of SP or PC in the list is deprecated
|
|
@ CHECK: stmda r1!, {r0, sp, pc}
|
|
@ CHECK: ^
|
|
stmda r2!, {sp, pc}
|
|
@ CHECK: warning: use of SP or PC in the list is deprecated
|
|
@ CHECK: stmda r2!, {sp, pc}
|
|
@ CHECK: ^
|
|
stmda sp!, {pc}
|
|
@ CHECK: warning: use of SP or PC in the list is deprecated
|
|
@ CHECK: stmda sp!, {pc}
|
|
@ CHECK: ^
|
|
stmda r0!, {sp}
|
|
@ CHECK: warning: use of SP or PC in the list is deprecated
|
|
@ CHECK: stmda r0!, {sp}
|
|
@ CHECK: ^
|
|
|
|
.global stmdb
|
|
.type stmdb,%function
|
|
stmdb:
|
|
stmdb sp!, {r0, pc}
|
|
@ CHECK: warning: use of SP or PC in the list is deprecated
|
|
@ CHECK: stmdb sp!, {r0, pc}
|
|
@ CHECK: ^
|
|
stmdb r0!, {r0, sp}
|
|
@ CHECK: warning: use of SP or PC in the list is deprecated
|
|
@ CHECK: stmdb r0!, {r0, sp}
|
|
@ CHECK: ^
|
|
stmdb r1!, {r0, sp, pc}
|
|
@ CHECK: warning: use of SP or PC in the list is deprecated
|
|
@ CHECK: stmdb r1!, {r0, sp, pc}
|
|
@ CHECK: ^
|
|
stmdb r2!, {sp, pc}
|
|
@ CHECK: warning: use of SP or PC in the list is deprecated
|
|
@ CHECK: stmdb r2!, {sp, pc}
|
|
@ CHECK: ^
|
|
stmdb sp!, {pc}
|
|
@ CHECK: warning: use of SP or PC in the list is deprecated
|
|
@ CHECK: stmdb sp!, {pc}
|
|
@ CHECK: ^
|
|
stmdb r0!, {sp}
|
|
@ CHECK: warning: use of SP or PC in the list is deprecated
|
|
@ CHECK: stmdb r0!, {sp}
|
|
@ CHECK: ^
|
|
|
|
.global stmib
|
|
.type stmib,%function
|
|
stmib:
|
|
stmib sp!, {r0, pc}
|
|
@ CHECK: warning: use of SP or PC in the list is deprecated
|
|
@ CHECK: stmib sp!, {r0, pc}
|
|
@ CHECK: ^
|
|
stmib r0!, {r0, sp}
|
|
@ CHECK: warning: use of SP or PC in the list is deprecated
|
|
@ CHECK: stmib r0!, {r0, sp}
|
|
@ CHECK: ^
|
|
stmib r1!, {r0, sp, pc}
|
|
@ CHECK: warning: use of SP or PC in the list is deprecated
|
|
@ CHECK: stmib r1!, {r0, sp, pc}
|
|
@ CHECK: ^
|
|
stmib r2!, {sp, pc}
|
|
@ CHECK: warning: use of SP or PC in the list is deprecated
|
|
@ CHECK: stmib r2!, {sp, pc}
|
|
@ CHECK: ^
|
|
stmib sp!, {pc}
|
|
@ CHECK: warning: use of SP or PC in the list is deprecated
|
|
@ CHECK: stmib sp!, {pc}
|
|
@ CHECK: ^
|
|
stmib r0!, {sp}
|
|
@ CHECK: warning: use of SP or PC in the list is deprecated
|
|
@ CHECK: stmib r0!, {sp}
|
|
@ CHECK: ^
|
|
|
|
|
|
.global push
|
|
.type push,%function
|
|
push:
|
|
push {r0, pc}
|
|
@ CHECK: warning: use of SP or PC in the list is deprecated
|
|
@ CHECK: push {r0, pc}
|
|
@ CHECK: ^
|
|
push {r0, sp}
|
|
@ CHECK: warning: use of SP or PC in the list is deprecated
|
|
@ CHECK: push {r0, sp}
|
|
@ CHECK: ^
|
|
push {r0, sp, pc}
|
|
@ CHECK: warning: use of SP or PC in the list is deprecated
|
|
@ CHECK: push {r0, sp, pc}
|
|
@ CHECK: ^
|
|
push {sp, pc}
|
|
@ CHECK: warning: use of SP or PC in the list is deprecated
|
|
@ CHECK: push {sp, pc}
|
|
@ CHECK: ^
|
|
push {pc}
|
|
@ CHECK: warning: use of SP or PC in the list is deprecated
|
|
@ CHECK: push {pc}
|
|
@ CHECK: ^
|
|
push {sp}
|
|
@ CHECK: warning: use of SP or PC in the list is deprecated
|
|
@ CHECK: push {sp}
|
|
@ CHECK: ^
|
|
|
|
.global single
|
|
.type single,%function
|
|
single:
|
|
stmdaeq r0, {r0}
|
|
@ CHECK-NOT: warning
|
|
|