On Tue, Dec 19, 2017 at 04:58:37PM +0000, Kyrill Tkachov wrote: > 2017-12-19 Kyrylo Tkachov <kyrylo.tkac...@arm.com> > > PR target/82975 > * gcc.dg/pr82975.c: New test.
The testcase FAILs on x86_64-linux/i686-linux and probably on all non-arm/aarch64 targets. Fixed thusly, committed to trunk as obvious. 2017-12-19 Jakub Jelinek <ja...@redhat.com> PR target/82975 * gcc.dg/pr82975.c: Only add -mtune=cortex-a57 on arm*/aarch64* targets. --- gcc/testsuite/gcc.dg/pr82975.c.jj 2017-12-19 18:07:33.000000000 +0100 +++ gcc/testsuite/gcc.dg/pr82975.c 2017-12-19 22:53:36.383901451 +0100 @@ -1,6 +1,7 @@ /* PR target/82975. */ /* { dg-do compile } */ -/* { dg-options "-mtune=cortex-a57 -fno-sched-pressure -O2" } */ +/* { dg-options "-fno-sched-pressure -O2" } */ +/* { dg-additional-options "-mtune=cortex-a57" { target arm*-*-* aarch64*-*-* } } */ typedef __SIZE_TYPE__ size_t; Jakub