x86: Restrict new gcc.target/i386/minmax-9.c test to !ia32.
authorRoger Sayle <roger@nextmovesoftware.com>
Thu, 6 Aug 2020 14:28:14 +0000 (15:28 +0100)
committerRoger Sayle <roger@nextmovesoftware.com>
Thu, 6 Aug 2020 14:28:14 +0000 (15:28 +0100)
As reported by Jakub Jelinek, this test fails with -m32.
Sorry for any inconvenience.

2020-08-06  Roger Sayle  <roger@nextmovesoftware.com>

gcc/testsuite/ChangeLog
* gcc.target/i386/minmax-9.c: Restrict test to !ia32.

gcc/testsuite/gcc.target/i386/minmax-9.c

index 3b94023..058d2a9 100644 (file)
@@ -1,4 +1,4 @@
-/* { dg-do compile } */
+/* { dg-do compile { target { ! ia32 } } } */
 /* { dg-options "-Os" } */
 
 #define max(a,b) (((a) > (b))? (a) : (b))