darwin, x86, testsuite - Check for an expected error on Darwin.
authorIain Sandoe <iain@sandoe.co.uk>
Sat, 25 May 2019 19:42:05 +0000 (19:42 +0000)
committerIain Sandoe <iains@gcc.gnu.org>
Sat, 25 May 2019 19:42:05 +0000 (19:42 +0000)
The test requests an alignment which exceeds the maximum object
file aligment for Darwin, rather than skipping it - test that we
see the expected error.

2019-05-25  Iain Sandoe  <iain@sandoe.co.uk>

* gcc.target/i386/pr89261.c: Test that the alignment required
by the test correctly produces the expected error on Darwin.

From-SVN: r271622

gcc/testsuite/ChangeLog
gcc/testsuite/gcc.target/i386/pr89261.c

index 708c698fb44d0093ce293edf90d5adeee32dd7ca..14ba78b2fd985feb24223018c938f39c9d434cb3 100644 (file)
@@ -1,3 +1,8 @@
+2019-05-25  Iain Sandoe  <iain@sandoe.co.uk>
+
+       * gcc.target/i386/pr89261.c: Test that the alignment required
+       by the test correctly produces the expected error on Darwin.
+
 2019-05-25  Iain Sandoe  <iain@sandoe.co.uk>
 
        * gcc.target/i386/pr82659-3.c: Require alias support.
index 63882c0995bf6b12482ce5da425420352599154b..c5c4273439b1640085a80d021d2f6f45d361f436 100644 (file)
@@ -5,5 +5,6 @@
 typedef double __v2df __attribute__ ((vector_size (16), aligned (1 << 28)));
 
 __v2df foo = { 1.0, 2.0 };
+/* { dg-error {alignment of 'foo' is greater than maximum object file alignment 32768} "" { target *-*-darwin* } .-1 } */
 
-/* { dg-final { scan-assembler "\.align\[ \t]+268435456" } } */
+/* { dg-final { scan-assembler "\.align\[ \t]+268435456" { target { ! *-*-darwin* } } } } */