diff options
Diffstat (limited to 'gcc/ada/prj-attr.ads')
-rw-r--r-- | gcc/ada/prj-attr.ads | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/gcc/ada/prj-attr.ads b/gcc/ada/prj-attr.ads index c19061f36f3..cf3c140b11f 100644 --- a/gcc/ada/prj-attr.ads +++ b/gcc/ada/prj-attr.ads @@ -2,11 +2,11 @@ -- -- -- GNAT COMPILER COMPONENTS -- -- -- --- P R J . A T T R -- +-- P R J . A T T R -- -- -- -- S p e c -- -- -- --- Copyright (C) 2001 Free Software Foundation, Inc. -- +-- Copyright (C) 2001-2002 Free Software Foundation, Inc. -- -- -- -- GNAT is free software; you can redistribute it and/or modify it under -- -- terms of the GNU General Public License as published by the Free Soft- -- @@ -45,7 +45,7 @@ package Prj.Attr is range Attribute_Node_Low_Bound .. Attribute_Node_High_Bound; First_Attribute_Node_Id : constant Attribute_Node_Id := - Attribute_Node_Low_Bound; + Attribute_Node_Low_Bound + 1; Empty_Attribute : constant Attribute_Node_Id := Attribute_Node_Low_Bound; @@ -70,12 +70,12 @@ package Prj.Attr is Table_Increment => Attributes_Increment, Table_Name => "Prj.Attr.Attributes"); - Attribute_First : constant Attribute_Node_Id := First_Attribute_Node_Id + 1; + Attribute_First : constant Attribute_Node_Id := First_Attribute_Node_Id; -- Define the allowed packages Packages_Initial : constant := 10; - Packages_Increment : constant := 10; + Packages_Increment : constant := 50; Package_Node_Low_Bound : constant := 0; Package_Node_High_Bound : constant := 099_999_999; @@ -84,7 +84,7 @@ package Prj.Attr is range Package_Node_Low_Bound .. Package_Node_High_Bound; First_Package_Node_Id : constant Package_Node_Id := - Package_Node_Low_Bound; + Package_Node_Low_Bound + 1; Empty_Package : constant Package_Node_Id := Package_Node_Low_Bound; @@ -101,7 +101,7 @@ package Prj.Attr is Table_Increment => Packages_Increment, Table_Name => "Prj.Attr.Packages"); - Package_First : constant Package_Node_Id := Package_Node_Low_Bound + 1; + Package_First : constant Package_Node_Id := First_Package_Node_Id; procedure Initialize; -- Initialize the two tables above (Attributes and Package_Attributes). |