URL
https://opencores.org/ocsvn/openrisc/openrisc/trunk
Subversion Repositories openrisc
[/] [openrisc/] [trunk/] [gnu-dev/] [or1k-gcc/] [gcc/] [testsuite/] [gcc.c-torture/] [execute/] [20020225-1.c] - Rev 711
Go to most recent revision | Compare with Previous | Blame | View Log
/* This testcase failed at -O2 on powerpc64 due to andsi3 writing nonzero bits to the high 32 bits of a 64 bit register. */ extern void abort (void); extern void exit (int); unsigned long foo (unsigned long base, unsigned int val) { return base + (val & 0x80000001); } int main (void) { if (foo (0L, 0x0ffffff0) != 0L) abort (); exit (0); }
Go to most recent revision | Compare with Previous | Blame | View Log