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/] [switch-1.c] - Rev 308
Go to most recent revision | Compare with Previous | Blame | View Log
/* Copyright (C) 2003 Free Software Foundation. Test that switch statements suitable using case bit tests are implemented correctly. Written by Roger Sayle, 01/25/2001. */ extern void abort (void); int foo (int x) { switch (x) { case 4: case 6: case 9: case 11: return 30; } return 31; } int main (int argc) { int i, r; for (i=-1; i<66; i++) { r = foo (i); if (i == 4) { if (r != 30) abort (); } else if (i == 6) { if (r != 30) abort (); } else if (i == 9) { if (r != 30) abort (); } else if (i == 11) { if (r != 30) abort (); } else if (r != 31) abort (); } return 0; }
Go to most recent revision | Compare with Previous | Blame | View Log