URL
https://opencores.org/ocsvn/openrisc/openrisc/trunk
Subversion Repositories openrisc
[/] [openrisc/] [trunk/] [gnu-dev/] [or1k-gcc/] [gcc/] [testsuite/] [gcc.c-torture/] [execute/] [pr29797-2.c] - Rev 801
Go to most recent revision | Compare with Previous | Blame | View Log
extern void abort(void); unsigned long bar(void) { return 32768; } int main() { unsigned long nStyle = bar (); if (nStyle & 32768) nStyle |= 65536; if (nStyle != (32768 | 65536)) abort (); return 0; }
Go to most recent revision | Compare with Previous | Blame | View Log