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.dg/] [vmx/] [x-02.c] - Rev 307
Go to most recent revision | Compare with Previous | Blame | View Log
#include <altivec.h> static vector bool char g(vector unsigned char, vector bool char); static int q(void); static vector bool char f(vector bool char b, vector unsigned char d) { vector bool char *p = &b; *p = g(d,b); return q() ? *p : b; } static vector bool char b8; static vector unsigned char u8; static vector bool char g(vector unsigned char a, vector bool char b) { return b8; } static int q () { return 1; } int main() { f(b8, u8); return 0; }
Go to most recent revision | Compare with Previous | Blame | View Log