Try to fix build system breakage w.r.t. ssse3_misaligned. It isn't

created from a .def file so should not be included in INSN_TESTS.



git-svn-id: svn://svn.valgrind.org/valgrind/trunk@7389
This commit is contained in:
Julian Seward 2008-02-10 17:46:46 +00:00
parent ca86507864
commit e6177495b9
2 changed files with 11 additions and 4 deletions

View File

@ -5,10 +5,10 @@ CLEANFILES = $(addsuffix .c,$(INSN_TESTS))
INSN_TESTS = insn_basic insn_mmx insn_sse insn_sse2 insn_fpu
if BUILD_SSE3_TESTS
INSN_TESTS += insn_sse3 insn_ssse3
INSN_TESTS += insn_sse3
endif
if BUILD_SSSE3_TESTS
INSN_TESTS += insn_ssse3 ssse3_misaligned
INSN_TESTS += insn_ssse3
endif
# Explicitly include insn_sse3 even if ! BUILD_SSE3_TESTS,
@ -41,10 +41,10 @@ EXTRA_DIST = $(noinst_SCRIPTS) \
shrld.stderr.exp shrld.stdout.exp shrld.vgtest \
ssse3_misaligned.stderr.exp ssse3_misaligned.stdout.exp \
ssse3_misaligned.vgtest \
ssse3_misaligned.c \
slahf-amd64.stderr.exp slahf-amd64.stdout.exp \
slahf-amd64.vgtest
check_PROGRAMS = \
bug127521-64 bug132813-amd64 bug137714-amd64 bug132918 \
clc \
@ -54,6 +54,9 @@ check_PROGRAMS = \
smc1 shrld \
nibz_bennee_mmap \
slahf-amd64
if BUILD_SSSE3_TESTS
check_PROGRAMS += ssse3_misaligned
endif
AM_CFLAGS = $(WERROR) -Winline -Wall -Wshadow -g -I$(top_srcdir)/include
@FLAG_M64@

View File

@ -8,7 +8,7 @@ if BUILD_SSE3_TESTS
INSN_TESTS += insn_sse3
endif
if BUILD_SSSE3_TESTS
INSN_TESTS += insn_ssse3 ssse3_misaligned
INSN_TESTS += insn_ssse3
endif
# Explicitly include insn_sse3 even if ! BUILD_SSE3_TESTS,
@ -50,6 +50,7 @@ EXTRA_DIST = $(noinst_SCRIPTS) \
smc1.stderr.exp smc1.stdout.exp smc1.vgtest \
ssse3_misaligned.stderr.exp ssse3_misaligned.stdout.exp \
ssse3_misaligned.vgtest \
ssse3_misaligned.c \
yield.stderr.exp yield.stdout.exp yield.disabled
check_PROGRAMS = \
@ -65,6 +66,9 @@ check_PROGRAMS = \
jcxz \
lahf looper movx int pushpopseg sbbmisc \
seg_override sigcontext smc1 yield
if BUILD_SSSE3_TESTS
check_PROGRAMS += ssse3_misaligned
endif
AM_CFLAGS = $(WERROR) -Winline -Wall -Wshadow \
@FLAG_M32@ -g -I$(top_srcdir)/include \