URL
https://opencores.org/ocsvn/openrisc/openrisc/trunk
Subversion Repositories openrisc
[/] [openrisc/] [trunk/] [gnu-dev/] [or1k-gcc/] [gcc/] [testsuite/] [gcc.target/] [mips/] [sb1-1.c] - Rev 697
Go to most recent revision | Compare with Previous | Blame | View Log
/* Test SB-1 v2sf extensions. */ /* { dg-do compile } */ /* { dg-options "-march=sb1 -O2 -mpaired-single -mgp64 -ffast-math" } */ /* { dg-final { scan-assembler "div.ps" } } */ /* { dg-final { scan-assembler "recip.ps" } } */ /* { dg-final { scan-assembler "sqrt.ps" } } */ /* { dg-final { scan-assembler "rsqrt.ps" } } */ typedef float v2sf __attribute__ ((vector_size (8))); NOMIPS16 v2sf divide (v2sf a, v2sf b) { return a / b; } NOMIPS16 v2sf recip (v2sf a) { return ((v2sf) {1.0, 1.0}) / a; } NOMIPS16 v2sf squareroot (v2sf a) { return __builtin_mips_sqrt_ps (a); } NOMIPS16 v2sf rsqrt (v2sf a) { return ((v2sf) {1.0, 1.0}) / __builtin_mips_sqrt_ps (a); }
Go to most recent revision | Compare with Previous | Blame | View Log