* gdb.base/dfp-exprs.exp (test_dfp_arithmetic_expressions): Add tests
[deliverable/binutils-gdb.git] / gdb / testsuite / gdb.base / dfp-test.c
1 /* This testcase is part of GDB, the GNU debugger.
2
3 Copyright 2007, 2008 Free Software Foundation, Inc.
4
5 This program is free software; you can redistribute it and/or modify
6 it under the terms of the GNU General Public License as published by
7 the Free Software Foundation; either version 3 of the License, or
8 (at your option) any later version.
9
10 This program is distributed in the hope that it will be useful,
11 but WITHOUT ANY WARRANTY; without even the implied warranty of
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 GNU General Public License for more details.
14
15 You should have received a copy of the GNU General Public License
16 along with this program. If not, see <http://www.gnu.org/licenses/>. */
17
18 #include <stdio.h>
19 #include <stdlib.h>
20
21 volatile _Decimal32 d32;
22 volatile _Decimal64 d64;
23 volatile _Decimal128 d128;
24
25 struct decstruct
26 {
27 int int4;
28 long long8;
29 float float4;
30 double double8;
31 _Decimal32 dec32;
32 _Decimal64 dec64;
33 _Decimal128 dec128;
34 } ds;
35
36 static _Decimal32
37 arg0_32 (_Decimal32 arg0, _Decimal32 arg1, _Decimal32 arg2,
38 _Decimal32 arg3, _Decimal32 arg4, _Decimal32 arg5)
39 {
40 return arg0;
41 }
42
43 static _Decimal64
44 arg0_64 (_Decimal64 arg0, _Decimal64 arg1, _Decimal64 arg2,
45 _Decimal64 arg3, _Decimal64 arg4, _Decimal64 arg5)
46 {
47 return arg0;
48 }
49
50 static _Decimal128
51 arg0_128 (_Decimal128 arg0, _Decimal128 arg1, _Decimal128 arg2,
52 _Decimal128 arg3, _Decimal128 arg4, _Decimal128 arg5)
53 {
54 return arg0;
55 }
56
57 int main()
58 {
59 /* An finite 32-bits decimal floating point. */
60 d32 = 1.2345df; /* Initialize d32. */
61
62 /* Non-finite 32-bits decimal floating point: infinity and NaN. */
63 d32 = __builtin_infd32(); /* Positive infd32. */
64 d32 = -__builtin_infd32(); /* Negative infd32. */
65 d32 = __builtin_nand32("");
66
67 /* An finite 64-bits decimal floating point. */
68 d64 = 1.2345dd; /* Initialize d64. */
69
70 /* Non-finite 64-bits decimal floating point: infinity and NaN. */
71 d64 = __builtin_infd64(); /* Positive infd64. */
72 d64 = -__builtin_infd64(); /* Negative infd64. */
73 d64 = __builtin_nand64("");
74
75 /* An finite 128-bits decimal floating point. */
76 d128 = 1.2345dl; /* Initialize d128. */
77
78 /* Non-finite 128-bits decimal floating point: infinity and NaN. */
79 d128 = __builtin_infd128(); /* Positive infd128. */
80 d128 = -__builtin_infd128(); /* Negative infd128. */
81 d128 = __builtin_nand128("");
82
83 /* Functions with decimal floating point as parameter and return value. */
84 d32 = arg0_32 (0.1df, 1.0df, 2.0df, 3.0df, 4.0df, 5.0df);
85 d64 = arg0_64 (0.1dd, 1.0dd, 2.0dd, 3.0dd, 4.0dd, 5.0dd);
86 d128 = arg0_128 (0.1dl, 1.0dl, 2.0dl, 3.0dl, 4.0dl, 5.0dl);
87
88 ds.int4 = 1;
89 ds.long8 = 2;
90 ds.float4 = 3.1;
91 ds.double8 = 4.2;
92 ds.dec32 = 1.2345df;
93 ds.dec64 = 1.2345dd;
94 ds.dec128 = 1.2345dl;
95
96 return 0; /* Exit point. */
97 }
This page took 0.032492 seconds and 5 git commands to generate.