Make use of extensions more explicit in libstdc++ tests
[gcc.git] / libstdc++-v3 / testsuite / 29_atomics / atomic / 62259.cc
1 // Copyright (C) 2015-2016 Free Software Foundation, Inc.
2 //
3 // This file is part of the GNU ISO C++ Library. This library is free
4 // software; you can redistribute it and/or modify it under the
5 // terms of the GNU General Public License as published by the
6 // Free Software Foundation; either version 3, or (at your option)
7 // any later version.
8
9 // This library is distributed in the hope that it will be useful,
10 // but WITHOUT ANY WARRANTY; without even the implied warranty of
11 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 // GNU General Public License for more details.
13
14 // You should have received a copy of the GNU General Public License along
15 // with this library; see the file COPYING3. If not see
16 // <http://www.gnu.org/licenses/>.
17
18 // { dg-require-atomic-builtins "" }
19 // { dg-require-cstdint "" }
20 // { dg-options "-std=gnu++11" }
21 // { dg-do compile }
22
23 #include <atomic>
24 #include <cstdint>
25
26 using std::int32_t;
27 using std::int64_t;
28
29 // libstdc++/62259
30
31 struct twoints {
32 int32_t a;
33 int32_t b;
34 };
35
36 static_assert( alignof(std::atomic<twoints>) >= alignof(int64_t),
37 "std::atomic not suitably aligned" );
38
39 // libstdc++/65147
40
41 struct power_of_two_obj {
42 char c [8];
43 };
44
45 std::atomic<power_of_two_obj> obj1;
46
47 static_assert( __alignof__(obj1) >= alignof(int64_t),
48 "std::atomic not suitably aligned" );
49
50 struct container_struct {
51 char c[1];
52 std::atomic<power_of_two_obj> ao;
53 };
54
55 container_struct obj2;
56
57 static_assert( __alignof__(obj2.ao) >= alignof(int64_t),
58 "std::atomic not suitably aligned" );