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/] [20030805-1.c] - Rev 298
Compare with Previous | Blame | View Log
/* Test that gcc understands that the call to g might clobber i. */ /* { dg-do run } */ /* { dg-options "-O2" } */ __inline int f () { static int i; int i2 = i; i = i2 + 1; return i; } int g () { return f (); } int main () { if (f() != 1 || g() != 2 || f() != 3) return 1; return 0; }