Upstream: https://gitlab.com/qemu-project/qemu.git Upstream-Commit: d2e570cc0f97b936902a5b1b86b73c0f5998b475
17 lines
267 B
ArmAsm
17 lines
267 B
ArmAsm
/*
|
|
* Test STRL to a non-word aligned address.
|
|
*
|
|
* SPDX-License-Identifier: GPL-2.0-or-later
|
|
*/
|
|
.globl test
|
|
test:
|
|
strl %r1,unaligned
|
|
|
|
.align 8
|
|
.globl expected_old_psw
|
|
expected_old_psw:
|
|
.quad 0x180000000,test
|
|
.short 0
|
|
unaligned:
|
|
.long 0
|