URL
https://opencores.org/ocsvn/openrisc/openrisc/trunk
Subversion Repositories openrisc
[/] [openrisc/] [trunk/] [gnu-dev/] [or1k-gcc/] [gcc/] [testsuite/] [gcc.target/] [i386/] [isa-9.c] - Rev 848
Go to most recent revision | Compare with Previous | Blame | View Log
/* { dg-do run } */ /* { dg-skip-if "" { i?86-*-* x86_64-*-* } { "-march=*" } { "-march=amdfam10" } } */ /* { dg-options "-march=amdfam10 -mno-fma4" } */ 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; }
Go to most recent revision | Compare with Previous | Blame | View Log