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.c-torture/] [execute/] [20031010-1.c] - Rev 301
Go to most recent revision | Compare with Previous | Blame | View Log
/* A reminder to process ops in generate_expr_as_of_bb exactly once. */ long __attribute__((noinline)) foo (long ct, long cf, _Bool p1, _Bool p2, _Bool p3) { long diff; diff = ct - cf; if (p1) { if (p2) { if (p3) { long tmp = ct; ct = cf; cf = tmp; } diff = ct - cf; } return diff; } abort (); } int main () { if (foo(2, 3, 1, 1, 1) == 0) abort (); return 0; }
Go to most recent revision | Compare with Previous | Blame | View Log