]> git.ipfire.org Git - thirdparty/gcc.git/blame - libstdc++-v3/testsuite/decimal/ctor.cc
Update copyright years in libstdc++-v3/
[thirdparty/gcc.git] / libstdc++-v3 / testsuite / decimal / ctor.cc
CommitLineData
aa118a03 1// Copyright (C) 2009-2014 Free Software Foundation, Inc.
4cdc8761
BK
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
02ebbe2f 18// { dg-require-effective-target dfp }
4cdc8761
BK
19
20// ISO/IEC TR 24733 3.2.2.1 Construct/copy/destroy (decimal32).
21// ISO/IEC TR 24733 3.2.3.1 Construct/copy/destroy (decimal64).
22// ISO/IEC TR 24733 3.2.4.1 Construct/copy/destroy (decimal128).
23
24// Test the default constructor.
25
26#include <decimal/decimal>
27#include <cstring>
28#include <testsuite_hooks.h>
29
30using namespace std::decimal;
31
32void
33ctor_32 (void)
34{
ef859c9d 35 bool test __attribute__((unused)) = true;
4cdc8761
BK
36 decimal32 a;
37 float b __attribute__((mode(SD))) = 0.e-101DF;
38
ef859c9d 39 VERIFY (std::memcmp (&a, &b, 4) == 0);
4cdc8761
BK
40}
41
42void
43ctor_64 (void)
44{
ef859c9d 45 bool test __attribute__((unused)) = true;
4cdc8761
BK
46 decimal64 a;
47 float b __attribute__((mode(DD))) = 0.e-398DD;
48
ef859c9d 49 VERIFY (std::memcmp (&a, &b, 8) == 0);
4cdc8761
BK
50}
51
52void
53ctor_128 (void)
54{
ef859c9d 55 bool test __attribute__((unused)) = true;
4cdc8761
BK
56 decimal128 a;
57 float b __attribute__((mode(TD))) = 0.e-6176DL;
58
ef859c9d 59 VERIFY (std::memcmp (&a, &b, 16) == 0);
4cdc8761
BK
60}
61
62int
63main ()
64{
65 ctor_32 ();
66 ctor_64 ();
67 ctor_128 ();
68}