1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
#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; }