URL
https://opencores.org/ocsvn/openrisc/openrisc/trunk
Subversion Repositories openrisc
[/] [openrisc/] [trunk/] [gnu-old/] [gcc-4.2.2/] [gcc/] [testsuite/] [gcc.dg/] [vmx/] [3a-01.c] - Rev 154
Go to most recent revision | Compare with Previous | Blame | View Log
#include "harness.h" /* Simple use of a non-overloaded generic vector intrinsic. */ static vector unsigned int f(vector unsigned int a, vector unsigned int b) { return vec_addc(a,b); } static void test() { check(vec_all_eq(f(((vector unsigned int){1,1,3,2}), ((vector unsigned int){-1,-2,3,-4})), ((vector unsigned int){1,0,0,0})), "f"); }
Go to most recent revision | Compare with Previous | Blame | View Log