From b4e4172da6d43ac47cdf6763b3531e5e23102ff9 Mon Sep 17 00:00:00 2001 From: Joseph Myers Date: Tue, 14 Feb 2017 00:15:48 +0000 Subject: Move INIT_ARCH_EXT call from libm-test-support to libm-test-driver. libmvec tests involve calling INIT_ARCH_EXT during initialization then CHECK_ARCH_EXT before testing each function to see if the processor being used for testing supports the required instruction set extensions. After my refactoring of libm-test infrastructure, the INIT_ARCH_EXT call is in libm-test-support.c, built only once per floating-point type. Now, in fact all definitions of this macro are empty, but given that the definitions in sysdeps/x86_64/fpu/math-tests-arch.h are conditional on REQUIRE_* macros defined in particular vector tests, it seems more correct for the INIT_ARCH_EXT call to go instead in libm-test-driver.c which gets built separately with those REQUIRE_* macros properly defined. This patch moves the call there. Tested for x86_64 and x86. * math/libm-test-support.h: Do not include here. * math/libm-test-support.c (libm_test_init): Do not call INIT_ARCH_EXT here. * math/libm-test-driver.c: Include . (main): Call INIT_ARCH_EXT. --- math/libm-test-support.c | 2 -- 1 file changed, 2 deletions(-) (limited to 'math/libm-test-support.c') diff --git a/math/libm-test-support.c b/math/libm-test-support.c index d387f813d0..8890c1cbdd 100644 --- a/math/libm-test-support.c +++ b/math/libm-test-support.c @@ -1182,8 +1182,6 @@ libm_test_init (int argc, char **argv) initialize (); fputs (test_msg, stdout); - INIT_ARCH_EXT; - check_ulp (); } -- cgit v1.2.3