Testsuite fixes for C++11 alignof change.
authorJason Merrill <jason@gcc.gnu.org>
Tue, 24 Apr 2018 15:54:56 +0000 (11:54 -0400)
committerJason Merrill <jason@gcc.gnu.org>
Tue, 24 Apr 2018 15:54:56 +0000 (11:54 -0400)
gcc/testsuite:
* c-c++-common/attr-aligned-1.c: Use __alignof__ in C++11.
* g++.dg/cpp0x/alignas4.C: Expect 4-byte alignment on x86.

From-SVN: r259606

gcc/testsuite/c-c++-common/attr-aligned-1.c
gcc/testsuite/g++.dg/cpp0x/alignas4.C

index 671e86baeb6075d2efbcc7b328ca210f1bc09768..26b62393ac0a7d6ced767013bdb635f8b21db9e6 100644 (file)
@@ -17,8 +17,8 @@ main ()
 }
 
 #if defined(__cplusplus) && __cplusplus >= 201103L
-static_assert (alignof (S) == 2 * alignof (double), "alignment of S");
-static_assert (alignof (T) == 2 * alignof (double), "alignment of T");
-static_assert (alignof (const S) == 2 * alignof (double), "alignment of const S");
-static_assert (alignof (const T) == 2 * alignof (double), "alignment of const T");
+static_assert (alignof (S) == 2 * __alignof__ (double), "alignment of S");
+static_assert (alignof (T) == 2 * __alignof__ (double), "alignment of T");
+static_assert (alignof (const S) == 2 * __alignof__ (double), "alignment of const S");
+static_assert (alignof (const T) == 2 * __alignof__ (double), "alignment of const T");
 #endif
index baa56eb8ac51d3031bc3c218967fd46ce0e2c2c2..b66fa651bc2ce915cb7af97fdc0f6855ef207aea 100644 (file)
@@ -1,6 +1,7 @@
 // PR c++/59012
 // { dg-do compile { target c++11 } }
-// { dg-final { scan-assembler "align 8" { target { { i?86-*-* x86_64-*-* } && { ! *-*-darwin* } } } } }
+// { dg-final { scan-assembler "align 8" { target { { i?86-*-* x86_64-*-* } && { { ! ia32 } && { ! *-*-darwin* } } } } } }
+// { dg-final { scan-assembler "align 4" { target ia32 } } }
 
 template <class... T>
 struct A