URL
https://opencores.org/ocsvn/openrisc_me/openrisc_me/trunk
Subversion Repositories openrisc_me
[/] [openrisc/] [trunk/] [gnu-src/] [gcc-4.5.1/] [gcc/] [testsuite/] [gcc.target/] [i386/] [isa-2.c] - Rev 327
Go to most recent revision | Compare with Previous | Blame | View Log
/* { dg-do run } */ /* { dg-options "-march=x86-64 -msse4 -mfma4" } */ 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; }
Go to most recent revision | Compare with Previous | Blame | View Log