File tree Expand file tree Collapse file tree 1 file changed +2
-5
lines changed
libcxx/test/std/utilities/meta/meta.unary.prop.query Expand file tree Collapse file tree 1 file changed +2
-5
lines changed Original file line number Diff line number Diff line change 6
6
//
7
7
// ===----------------------------------------------------------------------===//
8
8
9
- // Fails for 32-bit builds on AIX.
10
- // UNSUPPORTED: LIBCXX-AIX-FIXME
11
-
12
9
// type_traits
13
10
14
11
// alignment_of
@@ -54,8 +51,8 @@ int main(int, char**)
54
51
// we should expect. In most cases it should be 8. But in i386 builds
55
52
// with Clang >= 8 or GCC >= 8 the value is '4'.
56
53
test_alignment_of<double , TEST_ALIGNOF (double )>();
57
- #if (defined(__ppc__) && !defined(__ppc64__))
58
- test_alignment_of<bool , 4 >(); // 32-bit PPC has four byte bool
54
+ #if (defined(__ppc__) && !defined(__ppc64__) && !defined(_AIX) )
55
+ test_alignment_of<bool , 4 >(); // 32-bit PPC has four byte bool, except on AIX.
59
56
#else
60
57
test_alignment_of<bool , 1 >();
61
58
#endif
You can’t perform that action at this time.
0 commit comments