https://gcc.gnu.org/bugzilla/show_bug.cgi?id=69305
Jakub Jelinek <jakub at gcc dot gnu.org> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|UNCONFIRMED |NEW Last reconfirmed| |2016-01-18 Ever confirmed|0 |1 --- Comment #4 from Jakub Jelinek <jakub at gcc dot gnu.org> --- Reduced testcase: __attribute__((noinline, noclone)) unsigned __int128 foo (unsigned __int128 x, unsigned long long y) { return x + (unsigned long long) -y; } int main () { if (foo (70, 0) != 70) __builtin_abort (); return 0; }