URL
https://opencores.org/ocsvn/openrisc/openrisc/trunk
Subversion Repositories openrisc
[/] [openrisc/] [trunk/] [gnu-dev/] [or1k-gcc/] [gcc/] [testsuite/] [gcc.c-torture/] [execute/] [pr40668.c] - Rev 688
Compare with Previous | Blame | View Log
#if (__SIZEOF_INT__ == 2) #define TESTVALUE 0x1234 #else #define TESTVALUE 0x12345678 #endif static void foo (unsigned int x, void *p) { __builtin_memcpy (p, &x, sizeof x); } void bar (int type, void *number) { switch (type) { case 1: foo (TESTVALUE, number); break; case 7: foo (0, number); break; case 8: foo (0, number); break; case 9: foo (0, number); break; } } int main (void) { unsigned int x; bar (1, &x); if (x != TESTVALUE) __builtin_abort (); return 0; }