# HG changeset patch # User Matti Hamalainen # Date 1215347599 -10800 # Node ID 7bf9affe88b6780c365f722e8b89fa5260e14ce2 # Parent cfc8d1e0c78bb27c5b1b4a7544a5970687d7ccce Use also GCC inline assembler for detecting SSE2 support, because apparently intrinsics get compiled to nothing in some cases where SSE2 is not supported, thus making the test give a false positive upon execution. diff -r cfc8d1e0c78b -r 7bf9affe88b6 acinclude.m4 --- a/acinclude.m4 Sun Jul 06 13:55:23 2008 +0200 +++ b/acinclude.m4 Sun Jul 06 15:33:19 2008 +0300 @@ -206,6 +206,7 @@ int main() { _mm_setzero_pd(); + asm volatile("xorpd %xmm0,%xmm0\n\t"); return 0; } ],[