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/] [pr26729-1.c] - Rev 149
Go to most recent revision | Compare with Previous | Blame | View Log
/* { dg-do run } */ /* { dg-options "-O2" } */ void abort(void); __attribute__((noinline)) int f (unsigned short word) { return (word & 0x1) && (((unsigned short) (word & 0x8000)) == 0x8000); } int main(void) { if (!f(0x8001)) abort(); return 0; }
Go to most recent revision | Compare with Previous | Blame | View Log