// { dg-options " -std=gnu++11 " } // { dg-do compile } // 2014-04-16 RĂ¼diger Sonderfeld // Copyright (C) 2014-2016 Free Software Foundation, Inc. // // This file is part of the GNU ISO C++ Library. This library is free // software; you can redistribute it and/or modify it under the terms // of the GNU General Public License as published by the Free Software // Foundation; either version 3, or (at your option) any later // version. // This library is distributed in the hope that it will be useful, but // WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU // General Public License for more details. // You should have received a copy of the GNU General Public License // along with this library; see the file COPYING3. If not see // . // C++11 [meta.trans.other] 20.9.7.6: aligned_union #include #include struct MSAlignType { } __attribute__((__aligned__)); template struct mymax { static const std::size_t alignment = 0; static const std::size_t size = 0; }; template struct mymax { static const std::size_t alignment = alignof(L) > mymax::alignment ? alignof(L) : mymax::alignment; static const std::size_t size = sizeof(L) > mymax::size ? sizeof(L) : mymax::size; }; void test01() { using std::aligned_union; using std::alignment_of; using std::size_t; using namespace __gnu_test; const size_t max_a = mymax::alignment; const size_t max_s = mymax::size; typedef aligned_union<0, char, short, int, double, int[4], ClassType, MSAlignType> au_type; static_assert(au_type::alignment_value == max_a, "Alignment value"); static_assert(sizeof(au_type::type) >= max_s, "Storage size"); typedef aligned_union au_type2; static_assert(sizeof(au_type2::type) >= max_s+100, "Storage size (at least len)"); } int main() { test01(); }