URL
https://opencores.org/ocsvn/openrisc/openrisc/trunk
Subversion Repositories openrisc
[/] [openrisc/] [trunk/] [gnu-old/] [gcc-4.2.2/] [gcc/] [testsuite/] [gcc.c-torture/] [execute/] [20020805-1.c] - Rev 149
Go to most recent revision | Compare with Previous | Blame | View Log
/* This testcase was miscompiled on IA-32, because fold-const assumed associate_trees is always done on PLUS_EXPR. */ extern void abort (void); extern void exit (int); void check (unsigned int m) { if (m != (unsigned int) -1) abort (); } unsigned int n = 1; int main (void) { unsigned int m; m = (1 | (2 - n)) | (-n); check (m); exit (0); }
Go to most recent revision | Compare with Previous | Blame | View Log