Make test program not throw warnings about undefined variables
authorBenjamin Otte <otte@gnome.org>
Sat, 28 Nov 2009 10:38:43 +0000 (11:38 +0100)
committerBenjamin Otte <otte@gnome.org>
Fri, 4 Dec 2009 14:04:24 +0000 (15:04 +0100)
configure.ac

index a61bc1a..a2eaecb 100644 (file)
@@ -253,7 +253,7 @@ AC_COMPILE_IFELSE([
 #include <xmmintrin.h>
 #include <emmintrin.h>
 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)