diff options
author | Alex Bennée <alex.bennee@linaro.org> | 2022-04-19 10:10:16 +0100 |
---|---|---|
committer | Alex Bennée <alex.bennee@linaro.org> | 2022-04-20 16:04:20 +0100 |
commit | 9730a27ef43d676807b8a0e84f2eff8124125902 (patch) | |
tree | 91d1b0d38f6f481d8f0cf16d3753520a449a027a | |
parent | a5ed13cd31aefdf351b25635457b4b0fdeb74b3b (diff) | |
download | qemu-9730a27ef43d676807b8a0e84f2eff8124125902.zip qemu-9730a27ef43d676807b8a0e84f2eff8124125902.tar.gz qemu-9730a27ef43d676807b8a0e84f2eff8124125902.tar.bz2 |
tests/tcg: remove duplicate sha512-sse case
We already generate the sha512-sse case in the i386 makefile which
works for both i386 and x86_64.
Signed-off-by: Alex Bennée <alex.bennee@linaro.org>
Fixes: f8a4c6d728 ("tests/tcg: add vectorised sha512 versions")
Reviewed-by: Richard Henderson <richard.henderson@linaro.org>
Message-Id: <20220419091020.3008144-22-alex.bennee@linaro.org>
-rw-r--r-- | tests/tcg/x86_64/Makefile.target | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/tests/tcg/x86_64/Makefile.target b/tests/tcg/x86_64/Makefile.target index f9fcd31..b71a6bc 100644 --- a/tests/tcg/x86_64/Makefile.target +++ b/tests/tcg/x86_64/Makefile.target @@ -22,10 +22,3 @@ test-x86_64: test-i386.c test-i386.h test-i386-shift.h test-i386-muldiv.h vsyscall: $(SRC_PATH)/tests/tcg/x86_64/vsyscall.c $(CC) $(CFLAGS) $< -o $@ $(LDFLAGS) - -# TCG does not yet support all SSE (SIGILL on pshufb) -# sha512-sse: CFLAGS=-march=core2 -O3 -# sha512-sse: sha512.c -# $(CC) $(CFLAGS) $(EXTRA_CFLAGS) $< -o $@ $(LDFLAGS) - -TESTS+=sha512-sse |