Retro68/gcc/libstdc++-v3/testsuite/29_atomics/atomic/69301.cc

58 lines
1.4 KiB
C++
Raw Normal View History

2019-06-02 15:48:37 +00:00
// Copyright (C) 2017-2019 Free Software Foundation, Inc.
2017-04-10 11:32:00 +00:00
//
// 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.
2017-04-10 11:32:00 +00:00
// 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.
2017-04-10 11:32:00 +00:00
// You should have received a copy of the GNU General Public License along
// with this library; see the file COPYING3. If not see
// <http://www.gnu.org/licenses/>.
// { dg-do run { target c++11 } }
// { dg-require-atomic-builtins "" }
#include <atomic>
2017-04-10 11:32:00 +00:00
#include <testsuite_hooks.h>
struct NonDefaultConstructible
2017-04-10 11:32:00 +00:00
{
NonDefaultConstructible(int i) : val(i) { }
int val;
2017-04-10 11:32:00 +00:00
};
template class std::atomic<NonDefaultConstructible>;
2017-04-10 11:32:00 +00:00
void
test01()
2017-04-10 11:32:00 +00:00
{
std::atomic<NonDefaultConstructible> a(1);
const auto n1 = a.exchange(2);
VERIFY( n1.val == 1 );
const auto n2 = a.load();
VERIFY( n2.val == 2 );
2017-04-10 11:32:00 +00:00
}
void
test02()
2017-04-10 11:32:00 +00:00
{
volatile std::atomic<NonDefaultConstructible> a(1);
const auto n1 = a.exchange(2);
VERIFY( n1.val == 1 );
const auto n2 = a.load();
VERIFY( n2.val == 2 );
2017-04-10 11:32:00 +00:00
}
int
main()
2017-04-10 11:32:00 +00:00
{
test01();
test02();
}