Commit b9ca5811 by Uros Bizjak Committed by Uros Bizjak

sse-18.c: Pass if CPU has no SSE2 support.

	* gcc.target/i386/sse-18.c: Pass if CPU has no SSE2 support.

From-SVN: r119493
parent 98bbe5ee
2006-12-04 Uros Bizjak <ubizjak@gmail.com>
* gcc.target/i386/sse-18.c: Pass if CPU has no SSE2 support.
2006-12-04 Paul Thomas <pault@gcc.gnu.org> 2006-12-04 Paul Thomas <pault@gcc.gnu.org>
PR fortran/29916 PR fortran/29916
...@@ -20,8 +20,8 @@ main() { ...@@ -20,8 +20,8 @@ main() {
cpu_facilities = i386_cpuid (); cpu_facilities = i386_cpuid ();
if ((cpu_facilities & (bit_MMX | bit_SSE | bit_CMOV)) if ((cpu_facilities & (bit_MMX | bit_SSE | bit_SSE2 | bit_CMOV))
!= (bit_MMX | bit_SSE | bit_CMOV)) != (bit_MMX | bit_SSE | bit_SSE2 | bit_CMOV))
/* If host has no vector support, pass. */ /* If host has no vector support, pass. */
return 0; return 0;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment