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.2.2/] [gcc/] [testsuite/] [gcc.dg/] [20010405-1.c] - Rev 154
Compare with Previous | Blame | View Log
__inline__ double bar(double *x) { static double a; a = *x >= 0 ? *x : -*x; return a; } int main(void) { extern double bar(); double a; static double b; int r; for (r = 1; r < 3; r++) { a = 1.0; b = bar(&a); } return 0; }