URL
https://opencores.org/ocsvn/openrisc/openrisc/trunk
Subversion Repositories openrisc
[/] [openrisc/] [trunk/] [gnu-dev/] [or1k-gcc/] [gcc/] [testsuite/] [gcc.c-torture/] [execute/] [pr49218.c] - Rev 688
Compare with Previous | Blame | View Log
#ifdef __SIZEOF_INT128__ typedef __int128 L; #else typedef long long L; #endif float f; int main () { L i = f; if (i <= 10) do { ++i; asm (""); } while (i != 11); return 0; }