aboutsummaryrefslogtreecommitdiff
path: root/gcc/ada/ali.ads
diff options
context:
space:
mode:
Diffstat (limited to 'gcc/ada/ali.ads')
-rw-r--r--gcc/ada/ali.ads20
1 files changed, 8 insertions, 12 deletions
diff --git a/gcc/ada/ali.ads b/gcc/ada/ali.ads
index 96f6bd5..eea6b46 100644
--- a/gcc/ada/ali.ads
+++ b/gcc/ada/ali.ads
@@ -42,32 +42,28 @@ package ALI is
-- Id Types --
--------------
- -- The various entries are stored in tables with distinct subscript ranges.
- -- The following type definitions show the ranges used for the subscripts
- -- (Id values) for the various tables.
-
- type ALI_Id is range 0 .. 999_999;
+ type ALI_Id is range 0 .. 99_999_999;
-- Id values used for ALIs table entries
- type Unit_Id is range 1_000_000 .. 1_999_999;
+ type Unit_Id is range 0 .. 99_999_999;
-- Id values used for Unit table entries
- type With_Id is range 2_000_000 .. 2_999_999;
+ type With_Id is range 0 .. 99_999_999;
-- Id values used for Withs table entries
- type Arg_Id is range 3_000_000 .. 3_999_999;
+ type Arg_Id is range 0 .. 99_999_999;
-- Id values used for argument table entries
- type Sdep_Id is range 4_000_000 .. 4_999_999;
+ type Sdep_Id is range 0 .. 99_999_999;
-- Id values used for Sdep table entries
- type Source_Id is range 5_000_000 .. 5_999_999;
+ type Source_Id is range 0 .. 99_999_999;
-- Id values used for Source table entries
- type Interrupt_State_Id is range 6_000_000 .. 6_999_999;
+ type Interrupt_State_Id is range 0 .. 99_999_999;
-- Id values used for Interrupt_State table entries
- type Priority_Specific_Dispatching_Id is range 7_000_000 .. 7_999_999;
+ type Priority_Specific_Dispatching_Id is range 0 .. 99_999_999;
-- Id values used for Priority_Specific_Dispatching table entries
--------------------