URL
https://opencores.org/ocsvn/openrisc/openrisc/trunk
Subversion Repositories openrisc
[/] [openrisc/] [trunk/] [gnu-stable/] [gcc-4.5.1/] [gcc/] [testsuite/] [gcc.target/] [frv/] [all-mclracca-1.c] - Rev 859
Go to most recent revision | Compare with Previous | Blame | View Log
/* GCSE used to reuse the value of __MRDACC. */ /* { dg-do run } */ extern void abort (void); extern void exit (int); void foo (int *z) { __MWTACC (3, 1); if (__MRDACC (3) != 1) *z = 1; __MCLRACCA (); if (__MRDACC (3) != 1) *z = 2; } int main () { int z = 3; foo (&z); if (z != 2) abort (); exit (0); }
Go to most recent revision | Compare with Previous | Blame | View Log