diff options
author | Bob Duff <duff@adacore.com> | 2019-07-03 08:14:29 +0000 |
---|---|---|
committer | Pierre-Marie de Rodat <pmderodat@gcc.gnu.org> | 2019-07-03 08:14:29 +0000 |
commit | 1f159b86c1e9ca2df09d6655fc9ad836d5c133e9 (patch) | |
tree | 280d4f6f0077e49e083b64ff501e30b72fb25132 /gcc/ada | |
parent | 8334176aaaebf68214328518b84a64ee20c72580 (diff) | |
download | gcc-1f159b86c1e9ca2df09d6655fc9ad836d5c133e9.zip gcc-1f159b86c1e9ca2df09d6655fc9ad836d5c133e9.tar.gz gcc-1f159b86c1e9ca2df09d6655fc9ad836d5c133e9.tar.bz2 |
[Ada] Spell "laid" correctly
2019-07-03 Bob Duff <duff@adacore.com>
gcc/ada/
* einfo.ads, exp_util.adb, layout.ads, sinfo.ads: Spell "laid"
correctly.
From-SVN: r272970
Diffstat (limited to 'gcc/ada')
-rw-r--r-- | gcc/ada/ChangeLog | 5 | ||||
-rw-r--r-- | gcc/ada/einfo.ads | 4 | ||||
-rw-r--r-- | gcc/ada/exp_util.adb | 6 | ||||
-rw-r--r-- | gcc/ada/layout.ads | 2 | ||||
-rw-r--r-- | gcc/ada/sinfo.ads | 8 |
5 files changed, 15 insertions, 10 deletions
diff --git a/gcc/ada/ChangeLog b/gcc/ada/ChangeLog index 0af3e41..55691b6 100644 --- a/gcc/ada/ChangeLog +++ b/gcc/ada/ChangeLog @@ -1,3 +1,8 @@ +2019-07-03 Bob Duff <duff@adacore.com> + + * einfo.ads, exp_util.adb, layout.ads, sinfo.ads: Spell "laid" + correctly. + 2019-07-03 Ed Schonberg <schonberg@adacore.com> * sem_ch13.adb (Analyze_Attribute_Definition_Clause): No error diff --git a/gcc/ada/einfo.ads b/gcc/ada/einfo.ads index 70d374b..9dc6cc2 100644 --- a/gcc/ada/einfo.ads +++ b/gcc/ada/einfo.ads @@ -3779,7 +3779,7 @@ package Einfo is -- Optimize_Alignment_Space (Flag241) -- Defined in type, subtype, variable, and constant entities. This --- flag records that the type or object is to be layed out in a manner +-- flag records that the type or object is to be laid out in a manner -- consistent with Optimize_Alignment (Space) mode. The compiler and -- binder ensure a consistent view of any given type or object. If pragma -- Optimize_Alignment (Off) mode applies to the type/object, then neither @@ -3787,7 +3787,7 @@ package Einfo is -- Optimize_Alignment_Time (Flag242) -- Defined in type, subtype, variable, and constant entities. This --- flag records that the type or object is to be layed out in a manner +-- flag records that the type or object is to be laid out in a manner -- consistent with Optimize_Alignment (Time) mode. The compiler and -- binder ensure a consistent view of any given type or object. If pragma -- Optimize_Alignment (Off) mode applies to the type/object, then neither diff --git a/gcc/ada/exp_util.adb b/gcc/ada/exp_util.adb index b127f03..6b884ef 100644 --- a/gcc/ada/exp_util.adb +++ b/gcc/ada/exp_util.adb @@ -8258,8 +8258,8 @@ package body Exp_Util is return False; end if; - -- Here we have a tagged type, see if it has any unlayed out fields - -- other than a possible tag and parent fields. If so, we return False. + -- Here we have a tagged type, see if it has any component (other than + -- tag and parent) with no component_clause. If so, we return False. Comp := First_Component (U); while Present (Comp) loop @@ -8273,7 +8273,7 @@ package body Exp_Util is end if; end loop; - -- All components are layed out + -- All components have clauses return True; end Is_Fully_Repped_Tagged_Type; diff --git a/gcc/ada/layout.ads b/gcc/ada/layout.ads index c38d529..81162c1 100644 --- a/gcc/ada/layout.ads +++ b/gcc/ada/layout.ads @@ -34,7 +34,7 @@ package Layout is -- The following procedures are called from Freeze, so all entities -- for types and objects that get frozen (which should be all such - -- entities which are seen by the back end) will get layed out by one + -- entities which are seen by the back end) will get laid out by one -- of these two procedures. procedure Layout_Type (E : Entity_Id); diff --git a/gcc/ada/sinfo.ads b/gcc/ada/sinfo.ads index b0f992b..b3e1309 100644 --- a/gcc/ada/sinfo.ads +++ b/gcc/ada/sinfo.ads @@ -2857,7 +2857,7 @@ package Sinfo is -- Einfo. -- Note: N_Defining_Identifier is an extended node whose fields are - -- deliberately layed out to match the layout of fields in an ordinary + -- deliberately laid out to match the layout of fields in an ordinary -- N_Identifier node allowing for easy alteration of an identifier -- node into a defining identifier node. For details, see procedure -- Sinfo.CN.Change_Identifier_To_Defining_Identifier. @@ -3204,7 +3204,7 @@ package Sinfo is -- in package Einfo. -- Note: N_Defining_Character_Literal is an extended node whose fields - -- are deliberate layed out to match the layout of fields in an ordinary + -- are deliberate laid out to match the layout of fields in an ordinary -- N_Character_Literal node allowing for easy alteration of a character -- literal node into a defining character literal node. For details, see -- Sinfo.CN.Change_Character_Literal_To_Defining_Character_Literal. @@ -5429,7 +5429,7 @@ package Sinfo is -- in package Einfo. -- Note: N_Defining_Operator_Symbol is an extended node whose fields - -- are deliberately layed out to match the layout of fields in an + -- are deliberately laid out to match the layout of fields in an -- ordinary N_Operator_Symbol node allowing for easy alteration of -- an operator symbol node into a defining operator symbol node. -- See Sinfo.CN.Change_Operator_Symbol_To_Defining_Operator_Symbol @@ -8035,7 +8035,7 @@ package Sinfo is -- of this node, leaving the N_Selected_Component node used only when -- the prefix is a record or protected type. - -- The fields of the N_Expanded_Name node are layed out identically + -- The fields of the N_Expanded_Name node are laid out identically -- to those of the N_Selected_Component node, allowing conversion of -- an expanded name node to a selected component node to be done -- easily, see Sinfo.CN.Change_Selected_Component_To_Expanded_Name. |