7227c0cd50
The saturation arithmetic logic in helper_macw is not correct. I tested and verified this behavior on a SH7091. Reviewd-by: Yoshinori Sato <ysato@users.sourceforge.jp> Signed-off-by: Zack Buhman <zack@buhman.org> Message-Id: <20240405233802.29128-3-zack@buhman.org> [rth: Reformat helper_macw, add a test case.] Signed-off-by: Richard Henderson <richard.henderson@linaro.org> Reviewed-by: Philippe Mathieu-Daudé <philmd@linaro.org>
20 lines
425 B
Makefile
20 lines
425 B
Makefile
# -*- Mode: makefile -*-
|
|
#
|
|
# SuperH specific tweaks
|
|
#
|
|
|
|
# This triggers failures for sh4-linux about 10% of the time.
|
|
# Random SIGSEGV at unpredictable guest address, cause unknown.
|
|
run-signals: signals
|
|
$(call skip-test, $<, "BROKEN")
|
|
run-plugin-signals-with-%:
|
|
$(call skip-test, $<, "BROKEN")
|
|
|
|
VPATH += $(SRC_PATH)/tests/tcg/sh4
|
|
|
|
test-macl: CFLAGS += -O -g
|
|
TESTS += test-macl
|
|
|
|
test-macw: CFLAGS += -O -g
|
|
TESTS += test-macw
|