diff options
author | Ian Lance Taylor <iant@golang.org> | 2021-09-13 10:37:49 -0700 |
---|---|---|
committer | Ian Lance Taylor <iant@golang.org> | 2021-09-13 10:37:49 -0700 |
commit | e252b51ccde010cbd2a146485d8045103cd99533 (patch) | |
tree | e060f101cdc32bf5e520de8e5275db9d4236b74c /gcc/ada/sinfo-cn.ads | |
parent | f10c7c4596dda99d2ee872c995ae4aeda65adbdf (diff) | |
parent | 104c05c5284b7822d770ee51a7d91946c7e56d50 (diff) | |
download | gcc-e252b51ccde010cbd2a146485d8045103cd99533.zip gcc-e252b51ccde010cbd2a146485d8045103cd99533.tar.gz gcc-e252b51ccde010cbd2a146485d8045103cd99533.tar.bz2 |
Merge from trunk revision 104c05c5284b7822d770ee51a7d91946c7e56d50.
Diffstat (limited to 'gcc/ada/sinfo-cn.ads')
-rw-r--r-- | gcc/ada/sinfo-cn.ads | 11 |
1 files changed, 5 insertions, 6 deletions
diff --git a/gcc/ada/sinfo-cn.ads b/gcc/ada/sinfo-cn.ads index 837a753..bf3231b 100644 --- a/gcc/ada/sinfo-cn.ads +++ b/gcc/ada/sinfo-cn.ads @@ -6,7 +6,7 @@ -- -- -- S p e c -- -- -- --- Copyright (C) 1992-2020, Free Software Foundation, Inc. -- +-- Copyright (C) 1992-2021, 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- -- @@ -32,20 +32,19 @@ package Sinfo.CN is - procedure Change_Identifier_To_Defining_Identifier (N : in out Node_Id); + procedure Change_Identifier_To_Defining_Identifier (N : Node_Id); -- N must refer to a node of type N_Identifier. This node is modified to -- be of type N_Defining_Identifier. The scanner always returns identifiers -- as N_Identifier. The parser then uses this routine to change the node -- to be a defining identifier where the context demands it. This routine - -- also allocates the necessary extension node. Note that this procedure - -- may (but is not required to) change the Id of the node in question. + -- also allocates the necessary extension node. procedure Change_Character_Literal_To_Defining_Character_Literal - (N : in out Node_Id); + (N : Node_Id); -- Similar processing for a character literal procedure Change_Operator_Symbol_To_Defining_Operator_Symbol - (N : in out Node_Id); + (N : Node_Id); -- Similar processing for an operator symbol procedure Change_Conversion_To_Unchecked (N : Node_Id); |