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.c-torture/] [execute/] [pr35231.c] - Rev 297
Compare with Previous | Blame | View Log
extern void abort(void); int __attribute__((noinline)) foo(int bits_per_pixel, int depth) { if ((bits_per_pixel | depth) == 1) abort (); return bits_per_pixel; } int main() { if (foo(2, 0) != 2) abort (); return 0; }