URL
https://opencores.org/ocsvn/openrisc/openrisc/trunk
Subversion Repositories openrisc
[/] [openrisc/] [trunk/] [gnu-stable/] [gcc-4.5.1/] [gcc/] [testsuite/] [gcc.dg/] [pr33645-1.c] - Rev 816
Go to most recent revision | Compare with Previous | Blame | View Log
/* PR tree-optimization/33645 */ /* { dg-do link } */ /* { dg-options "-O2 -fno-unit-at-a-time" } */ __attribute__((noinline)) int bar (int *x) { return *x++; } int main () { static int var1_s; static int *var1_t = &var1_s; return bar (var1_t) != 0; }
Go to most recent revision | Compare with Previous | Blame | View Log