re PR rtl-optimization/85770 (ICE: in lra_eliminate, at lra-eliminations.c:1439 with -march=nano-1000)

PR rtl-optimization/85770
	* gcc.target/i386/pr85770.c: Require int128 effective target.

From-SVN: r266880
This commit is contained in:
Jakub Jelinek 2018-12-07 00:39:12 +01:00 committed by Jakub Jelinek
parent d4722625ae
commit 1e41b18448
2 changed files with 5 additions and 2 deletions

View file

@ -1,5 +1,8 @@
2018-12-07 Jakub Jelinek <jakub@redhat.com>
PR rtl-optimization/85770
* gcc.target/i386/pr85770.c: Require int128 effective target.
PR fortran/88377
* gfortran.dg/gomp/pr88377.f90: New test.

View file

@ -1,4 +1,5 @@
/* { dg-do compile } */
/* PR rtl-optimization/85770 */
/* { dg-do compile { target int128 } } */
/* { dg-options "-O2 -march=nano-1000 -fnon-call-exceptions -fno-tree-coalesce-vars" } */
unsigned a, b, c, d, e, f, g, h, i;
@ -14,4 +15,3 @@ __int128 foo(char k, unsigned short l, unsigned m, unsigned n, __int128 o,
return k + l + m + n + o + a + b + c + d + j + l + e + f + q + 4294967295 +
p + g + h + i;
}