|
From: <sv...@va...> - 2016-09-11 04:33:34
|
Author: rhyskidd
Date: Sun Sep 11 05:33:20 2016
New Revision: 15946
Log:
Follow up to r15905, properly guard memcheck/tests/amd64/shr_edx on clang. n-i-bz.
“error in backend: 32-bit absolute addressing is not supported in 64-bit mode”
Modified:
trunk/memcheck/tests/amd64/Makefile.am
trunk/memcheck/tests/amd64/shr_edx.vgtest
Modified: trunk/memcheck/tests/amd64/Makefile.am
==============================================================================
--- trunk/memcheck/tests/amd64/Makefile.am (original)
+++ trunk/memcheck/tests/amd64/Makefile.am Sun Sep 11 05:33:20 2016
@@ -44,7 +44,6 @@
insn-bsfl \
insn-pmovmskb \
sh-mem-vec128 \
- shr_edx \
sse_memory \
xor-undef-amd64
if BUILD_AVX_TESTS
@@ -55,7 +54,9 @@
endif
# clang 3.5.0 barfs about -mfancy-math-387
if !COMPILER_IS_CLANG
- check_PROGRAMS += more_x87_fp
+ check_PROGRAMS += \
+ more_x87_fp \
+ shr_edx
endif
AM_CFLAGS += @FLAG_M64@
Modified: trunk/memcheck/tests/amd64/shr_edx.vgtest
==============================================================================
--- trunk/memcheck/tests/amd64/shr_edx.vgtest (original)
+++ trunk/memcheck/tests/amd64/shr_edx.vgtest Sun Sep 11 05:33:20 2016
@@ -1,2 +1,3 @@
+prereq: test -e shr_edx
prog: shr_edx
vgopts: -q
|