ec2918b467
Failure to set pc_succ_insn may result in a TB covering zero bytes, which triggers an assert within the code generator. Cc: qemu-stable@nongnu.org Resolves: https://gitlab.com/qemu-project/qemu/-/issues/1224 Signed-off-by: Richard Henderson <richard.henderson@linaro.org> Reviewed-by: Alistair Francis <alistair.francis@wdc.com> Reviewed-by: Philippe Mathieu-Daudé <philmd@linaro.org> Message-Id: <20221203175744.151365-1-richard.henderson@linaro.org> [ Changes by AF: - Add missing run-plugin-test-noc-% line ] Signed-off-by: Alistair Francis <alistair.francis@wdc.com>
13 lines
327 B
Makefile
13 lines
327 B
Makefile
# -*- Mode: makefile -*-
|
|
# RISC-V specific tweaks
|
|
|
|
VPATH += $(SRC_PATH)/tests/tcg/riscv64
|
|
TESTS += test-div
|
|
TESTS += noexec
|
|
|
|
# Disable compressed instructions for test-noc
|
|
TESTS += test-noc
|
|
test-noc: LDFLAGS = -nostdlib -static
|
|
run-test-noc: QEMU_OPTS += -cpu rv64,c=false
|
|
run-plugin-test-noc-%: QEMU_OPTS += -cpu rv64,c=false
|