Sync usage with man page.
[netbsd-mini2440.git] / gnu / dist / gdb6 / gdb / testsuite / gdb.ada / fixed_points / fixed_points.adb
blob6438efb11c1f97a81992612371d4ad1e4686e5a0
1 -- Copyright 2004 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 2 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.
13 -- You should have received a copy of the GNU General Public License
14 -- along with this program; if not, write to the Free Software
15 -- Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
17 with System;
19 procedure Fixed_Points is
21 type Base_Fixed_Point_Type is
22 delta 1.0 / 16.0
23 range (System.Min_Int / 2) * 1.0 / 16.0 ..
24 (System.Max_Int / 2) * 1.0 / 16.0;
26 subtype Fixed_Point_Subtype is
27 Base_Fixed_Point_Type range -50.0 .. 50.0;
29 type New_Fixed_Point_Type is
30 new Base_Fixed_Point_Type range -50.0 .. 50.0;
32 Base_Object : Base_Fixed_Point_Type := -50.0;
33 Subtype_Object : Fixed_Point_Subtype := -50.0;
34 New_Type_Object : New_Fixed_Point_Type := -50.0;
35 begin
36 Base_Object := 1.0/16.0; -- Set breakpoint here
37 Subtype_Object := 1.0/16.0;
38 New_Type_Object := 1.0/16.0;
39 end Fixed_Points;