rt_gccstream/gcc/testsuite/gcc.target/i386/isa-14.c

35 lines
462 B
C

/* { dg-do run } */
/* { dg-options "-march=x86-64 -msse4a -mfma4 -mno-sse" } */
extern void abort (void);
int
main ()
{
#if defined __SSE__
abort ();
#endif
#if defined __SSE2__
abort ();
#endif
#if defined __SSE3__
abort ();
#endif
#if defined __SSSE3__
abort ();
#endif
#if defined __SSE4_1__
abort ();
#endif
#if defined __SSE4_2__
abort ();
#endif
#if defined __SSE4A__
abort ();
#endif
#if defined __FMA4__
abort ();
#endif
return 0;
}