fa581531ff
DREG_RS2 and DREG_CALC_RESULT were mapped to the same register which would not trigger https://gitlab.com/qemu-project/qemu/-/issues/653. So let's make each register unique. Signed-off-by: Bastian Koppelmann <kbastian@mail.uni-paderborn.de> Message-Id: <20230202120432.1268-5-kbastian@mail.uni-paderborn.de> Signed-off-by: Bastian Koppelmann <kbastian@mail.uni-paderborn.de>
10 lines
267 B
ArmAsm
10 lines
267 B
ArmAsm
#include "macros.h"
|
|
.text
|
|
.global _start
|
|
_start:
|
|
# insn num result rs1 imm1 rs2 imm2
|
|
# | | | | | | |
|
|
TEST_D_DIDI(insert, 1, 0x7fffffff, 0xffffffff, 0xa, 0x10, 0x8)
|
|
|
|
TEST_PASSFAIL
|