]> git.ipfire.org Git - thirdparty/binutils-gdb.git/blame - gdb/testsuite/gdb.ada/fixed_points/fixed_points.adb
Updated copyright notices for most files.
[thirdparty/binutils-gdb.git] / gdb / testsuite / gdb.ada / fixed_points / fixed_points.adb
CommitLineData
0fb0cc75 1-- Copyright 2004, 2007, 2008, 2009 Free Software Foundation, Inc.
fb6e1814
JG
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
cc00619d 5-- the Free Software Foundation; either version 3 of the License, or
fb6e1814
JG
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
cc00619d 14-- along with this program. If not, see <http://www.gnu.org/licenses/>.
fb6e1814
JG
15
16with System;
17
18procedure Fixed_Points is
19
20 type Base_Fixed_Point_Type is
21 delta 1.0 / 16.0
22 range (System.Min_Int / 2) * 1.0 / 16.0 ..
23 (System.Max_Int / 2) * 1.0 / 16.0;
24
25 subtype Fixed_Point_Subtype is
26 Base_Fixed_Point_Type range -50.0 .. 50.0;
27
28 type New_Fixed_Point_Type is
29 new Base_Fixed_Point_Type range -50.0 .. 50.0;
30
31 Base_Object : Base_Fixed_Point_Type := -50.0;
32 Subtype_Object : Fixed_Point_Subtype := -50.0;
33 New_Type_Object : New_Fixed_Point_Type := -50.0;
34begin
35 Base_Object := 1.0/16.0; -- Set breakpoint here
36 Subtype_Object := 1.0/16.0;
37 New_Type_Object := 1.0/16.0;
38end Fixed_Points;