mirror of
https://github.com/Zenithsiz/ftmemsim-valgrind.git
synced 2026-02-03 10:05:29 +00:00
Add test cases for verifying the new/enhanced instructions in the vector-enhancements facility 2. For "vector string search" VSTRS add a memcheck test case.
22 lines
553 B
Makefile
22 lines
553 B
Makefile
include $(top_srcdir)/Makefile.tool-tests.am
|
|
|
|
dist_noinst_SCRIPTS = filter_stderr
|
|
|
|
INSN_TESTS = cdsg cu21 cu42 ltgjhe vstrc vfae vistr vstrs
|
|
|
|
check_PROGRAMS = $(INSN_TESTS)
|
|
|
|
EXTRA_DIST = \
|
|
$(addsuffix .stderr.exp,$(INSN_TESTS)) \
|
|
$(addsuffix .stdout.exp,$(INSN_TESTS)) \
|
|
$(addsuffix .vgtest,$(INSN_TESTS))
|
|
|
|
AM_CFLAGS += @FLAG_M64@
|
|
AM_CXXFLAGS += @FLAG_M64@
|
|
AM_CCASFLAGS += @FLAG_M64@
|
|
|
|
vstrc_CFLAGS = $(AM_CFLAGS) -march=z13
|
|
vfae_CFLAGS = $(AM_CFLAGS) -march=z13
|
|
vistr_CFLAGS = $(AM_CFLAGS) -march=z13
|
|
vstrs_CFLAGS = $(AM_CFLAGS) -march=z13
|