From: Roger Sayle Date: Thu, 6 Aug 2020 14:28:14 +0000 (+0100) Subject: x86: Restrict new gcc.target/i386/minmax-9.c test to !ia32. X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=6221ecc9d9f4b2c57c087c77ebac25d848119e27;p=thirdparty%2Fgcc.git x86: Restrict new gcc.target/i386/minmax-9.c test to !ia32. As reported by Jakub Jelinek, this test fails with -m32. Sorry for any inconvenience. 2020-08-06 Roger Sayle gcc/testsuite/ChangeLog * gcc.target/i386/minmax-9.c: Restrict test to !ia32. --- diff --git a/gcc/testsuite/gcc.target/i386/minmax-9.c b/gcc/testsuite/gcc.target/i386/minmax-9.c index 3b940230bd44..058d2a99350d 100644 --- a/gcc/testsuite/gcc.target/i386/minmax-9.c +++ b/gcc/testsuite/gcc.target/i386/minmax-9.c @@ -1,4 +1,4 @@ -/* { dg-do compile } */ +/* { dg-do compile { target { ! ia32 } } } */ /* { dg-options "-Os" } */ #define max(a,b) (((a) > (b))? (a) : (b))