URL
https://opencores.org/ocsvn/openrisc/openrisc/trunk
Subversion Repositories openrisc
[/] [openrisc/] [trunk/] [gnu-stable/] [gcc-4.5.1/] [gcc/] [testsuite/] [gcc.target/] [powerpc/] [paired-3.c] - Rev 859
Go to most recent revision | Compare with Previous | Blame | View Log
/* { dg-do compile { target { powerpc-*-linux*paired* && ilp32 } } } */ /* { dg-options "-mpaired -ffinite-math-only" } */ /* Test PowerPC PAIRED extensions. */ #include <paired.h> #include <stdlib.h> static float out[2] __attribute__ ((aligned (8))); vector float b = { 2.0, 8.0 }; vector float c = { 3.0, 5.0 }; vector float a = { 0.0, 0.0 }; void test_api () { if (paired_cmpu0_lt (b, c)) { a = paired_add (b, c); paired_stx (a, 0, out); } if ((out[0] != 5.0) || (out[1] != 13.0)) abort (); } int main () { test_api (); return (0); }
Go to most recent revision | Compare with Previous | Blame | View Log