0c7213dd66
This includes: - PCADDI - PCADDU12I - PCADDU18I - PCALAU12I Signed-off-by: Song Gao <gaosong@loongson.cn> Message-Id: <20220716085426.3098060-9-gaosong@loongson.cn> Signed-off-by: Richard Henderson <richard.henderson@linaro.org>
20 lines
415 B
Makefile
20 lines
415 B
Makefile
# -*- Mode: makefile -*-
|
|
#
|
|
# LoongArch64 specific tweaks
|
|
|
|
# Loongarch64 doesn't support gdb, so skip the EXTRA_RUNS
|
|
EXTRA_RUNS =
|
|
|
|
LOONGARCH64_SRC=$(SRC_PATH)/tests/tcg/loongarch64
|
|
VPATH += $(LOONGARCH64_SRC)
|
|
|
|
LDFLAGS+=-lm
|
|
|
|
LOONGARCH64_TESTS = test_bit
|
|
LOONGARCH64_TESTS += test_div
|
|
LOONGARCH64_TESTS += test_fclass
|
|
LOONGARCH64_TESTS += test_fpcom
|
|
LOONGARCH64_TESTS += test_pcadd
|
|
|
|
TESTS += $(LOONGARCH64_TESTS)
|