xref: /netbsd-src/external/gpl3/gdb.old/dist/gdb/testsuite/gdb.ada/float_param/pck.ads (revision 867d70fc718005c0918b8b8b2f9d7f2d52d0a0db)
1--  Copyright 2013-2019 Free Software Foundation, Inc.
2--
3--  This program is free software; you can redistribute it and/or modify
4--  it under the terms of the GNU General Public License as published by
5--  the Free Software Foundation; either version 3 of the License, or
6--  (at your option) any later version.
7--
8--  This program is distributed in the hope that it will be useful,
9--  but WITHOUT ANY WARRANTY; without even the implied warranty of
10--  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
11--  GNU General Public License for more details.
12--
13--  You should have received a copy of the GNU General Public License
14--  along with this program.  If not, see <http://www.gnu.org/licenses/>.
15
16package Pck is
17   Global_Float : Float := 0.0;
18   Global_Double : Long_Float := 0.0;
19   Global_Long_Double : Long_Long_Float := 0.0;
20
21   type Small_Struct is record
22      I : Integer;
23   end record;
24   Global_Small_Struct : Small_Struct := (I => 0);
25
26   procedure Set_Float (F : Float);
27   procedure Set_Double (Dummy : Integer; D : Long_Float);
28   procedure Set_Long_Double (Dummy : Integer;
29                              DS: Small_Struct;
30                              LD : Long_Long_Float);
31end Pck;
32