URL
https://opencores.org/ocsvn/openrisc/openrisc/trunk
Subversion Repositories openrisc
[/] [openrisc/] [trunk/] [gnu-dev/] [or1k-gcc/] [gcc/] [testsuite/] [gcc.target/] [i386/] [isa-7.c] - Rev 691
Compare with Previous | Blame | View Log
/* { dg-do run } */ /* { dg-options "-march=amdfam10 -mfma4 -mno-sse4" } */ 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 __AVX__ abort (); #endif #if defined __FMA4__ abort (); #endif return 0; }