From 3fba7dc6fa52bbf01cfc5c4aab1ab06d49a117b2 Mon Sep 17 00:00:00 2001 From: Benjamin Otte Date: Sat, 28 Nov 2009 11:38:43 +0100 Subject: [PATCH] Make test program not throw warnings about undefined variables --- configure.ac | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/configure.ac b/configure.ac index a61bc1a..a2eaecb 100644 --- a/configure.ac +++ b/configure.ac @@ -253,7 +253,7 @@ AC_COMPILE_IFELSE([ #include #include int main () { - __m128i a, b, c; + __m128i a = _mm_set1_epi32 (0), b = _mm_set1_epi32 (0), c; c = _mm_xor_si128 (a, b); return 0; }], have_sse2_intrinsics=yes) -- 2.7.4