URL
https://opencores.org/ocsvn/openrisc/openrisc/trunk
Subversion Repositories openrisc
[/] [openrisc/] [trunk/] [gnu-dev/] [or1k-gcc/] [gcc/] [testsuite/] [gcc.dg/] [pr26729-1.c] - Rev 689
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; }