|
From: Paul F. <pa...@so...> - 2022-04-19 20:29:28
|
https://sourceware.org/git/gitweb.cgi?p=valgrind.git;h=acdef43dce1555859b4d788e921f1fd3e07b4211 commit acdef43dce1555859b4d788e921f1fd3e07b4211 Author: Paul Floyd <pj...@wa...> Date: Tue Apr 19 22:27:59 2022 +0200 memcheck/tests/amd64/shr_edx builds fine with clang Make it build unconditionally Diff: --- memcheck/tests/amd64/Makefile.am | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/memcheck/tests/amd64/Makefile.am b/memcheck/tests/amd64/Makefile.am index d5c94f68a0..8b8785613c 100644 --- a/memcheck/tests/amd64/Makefile.am +++ b/memcheck/tests/amd64/Makefile.am @@ -46,7 +46,8 @@ check_PROGRAMS = \ insn-pmovmskb \ sh-mem-vec128 \ sse_memory \ - xor-undef-amd64 + xor-undef-amd64 \ + shr_edx if BUILD_AVX_TESTS check_PROGRAMS += sh-mem-vec256 xsave-avx endif @@ -56,8 +57,7 @@ endif # clang 3.5.0 barfs about -mfancy-math-387 if !COMPILER_IS_CLANG check_PROGRAMS += \ - more_x87_fp \ - shr_edx + more_x87_fp endif AM_CFLAGS += @FLAG_M64@ |