URL
https://opencores.org/ocsvn/openrisc/openrisc/trunk
Subversion Repositories openrisc
[/] [openrisc/] [trunk/] [gnu-stable/] [gcc-4.5.1/] [gcc/] [testsuite/] [gcc.dg/] [torture/] [pr30665-1.c] - Rev 826
Compare with Previous | Blame | View Log
/* PR target/30665: bug in cris.md peephole2 condition. Testcase for trunk. */ /* { dg-do run } */ extern void abort (void); extern void exit (int); int __attribute__ ((__noinline__)) f (unsigned *p, int *x) { int y = *p++ & 0xfff; *x++ = y; *x = *p; return y; } int main (void) { unsigned u[2] = { 0x3aad, 0x5ad1 }; int x[2] = {17689, 23456}; if (f (u, x) != 0xaad || x[0] != 0xaad || x[1] != 0x5ad1) abort (); exit (0); }