URL
https://opencores.org/ocsvn/openrisc_2011-10-31/openrisc_2011-10-31/trunk
Subversion Repositories openrisc_2011-10-31
[/] [openrisc/] [trunk/] [gnu-src/] [gcc-4.5.1/] [gcc/] [testsuite/] [gcc.dg/] [pr32975.c] - Rev 378
Go to most recent revision | Compare with Previous | Blame | View Log
/* PR tree-optimization/32975 */ /* { dg-do compile } */ /* { dg-options "-O1 -finline-functions -fipa-cp" } */ static int f0 (char *s0, char *s1) { return __builtin_strlen (s0) > __builtin_strlen (s1); } int f1 (char *s, int j) { if (f0 (s, "")) return 1; return j; } void f2 (char *s) { f1 (s, 0); }
Go to most recent revision | Compare with Previous | Blame | View Log