diff options
Diffstat (limited to 'gcc/ada/nmake.ads')
-rw-r--r-- | gcc/ada/nmake.ads | 21 |
1 files changed, 13 insertions, 8 deletions
diff --git a/gcc/ada/nmake.ads b/gcc/ada/nmake.ads index d13f00f29c7..ab774ecf22c 100644 --- a/gcc/ada/nmake.ads +++ b/gcc/ada/nmake.ads @@ -6,9 +6,9 @@ -- -- -- S p e c -- -- -- --- Generated by xnmake revision 1.2 using -- --- sinfo.ads revision 1.6 -- --- nmake.adt revision 1.1 -- +-- Generated by xnmake revision 1.29 using -- +-- sinfo.ads revision 1.439 -- +-- nmake.adt revision 1.12 -- -- -- -- Copyright (C) 1992-2001 Free Software Foundation, Inc. -- -- -- @@ -178,7 +178,8 @@ package Nmake is pragma Inline (Make_Range); function Make_Enumeration_Type_Definition (Sloc : Source_Ptr; - Literals : List_Id) + Literals : List_Id; + End_Label : Node_Id := Empty) return Node_Id; pragma Inline (Make_Enumeration_Type_Definition); @@ -360,7 +361,8 @@ package Nmake is function Make_Attribute_Reference (Sloc : Source_Ptr; Prefix : Node_Id; Attribute_Name : Name_Id; - Expressions : List_Id := No_List) + Expressions : List_Id := No_List; + Must_Be_Byte_Aligned : Boolean := False) return Node_Id; pragma Inline (Make_Attribute_Reference); @@ -1301,17 +1303,20 @@ package Nmake is pragma Inline (Make_Itype_Reference); function Make_Raise_Constraint_Error (Sloc : Source_Ptr; - Condition : Node_Id := Empty) + Condition : Node_Id := Empty; + Reason : Uint) return Node_Id; pragma Inline (Make_Raise_Constraint_Error); function Make_Raise_Program_Error (Sloc : Source_Ptr; - Condition : Node_Id := Empty) + Condition : Node_Id := Empty; + Reason : Uint) return Node_Id; pragma Inline (Make_Raise_Program_Error); function Make_Raise_Storage_Error (Sloc : Source_Ptr; - Condition : Node_Id := Empty) + Condition : Node_Id := Empty; + Reason : Uint) return Node_Id; pragma Inline (Make_Raise_Storage_Error); |