On Tue, Dec 18, 2018 at 04:23:12PM -0500, Vladimir Makarov wrote: > The following patch fixes > > https://gcc.gnu.org/bugzilla/show_bug.cgi?id=87759 > > The patch was bootstrapped and tested on x86-64. > > Committed as rev. 267244.
The test FAILs on i686-linux, fixed thusly, committed as obvious: 2018-12-18 Jakub Jelinek <ja...@redhat.com> PR rtl-optimization/87759 * gcc.target/i386/pr87759.c: Require int128 effective target. --- gcc/testsuite/gcc.target/i386/pr87759.c.jj 2018-12-18 22:45:00.968103777 +0100 +++ gcc/testsuite/gcc.target/i386/pr87759.c 2018-12-18 22:47:29.879712883 +0100 @@ -1,5 +1,5 @@ /* PR rtl-optimization/87759 */ -/* { dg-do compile } */ +/* { dg-do compile { target int128 } } */ /* { dg-options "-O2 -w -fschedule-insns -fselective-scheduling -ftrapv -fno-dce -fno-expensive-optimizations -fno-ipa-ra -fno-tree-dce -fno-tree-ter" } */ int cc; Jakub