[Ada] Correct a typo, plus other minor reformatting
authorGary Dismukes <dismukes@adacore.com>
Tue, 20 Oct 2020 18:02:25 +0000 (14:02 -0400)
committerPierre-Marie de Rodat <derodat@adacore.com>
Thu, 26 Nov 2020 08:39:38 +0000 (03:39 -0500)
gcc/ada/

* exp_util.adb (Expand_Subtype_From_Expr): A typo correction,
plus other minor reformatting.

gcc/ada/exp_util.adb

index dd3aa49..b595de0 100644 (file)
@@ -5347,7 +5347,7 @@ package body Exp_Util is
       then
          null;
 
-      --  For limited objects initialized with build in place function calls,
+      --  For limited objects initialized with build-in-place function calls,
       --  nothing to be done; otherwise we prematurely introduce an N_Reference
       --  node in the expression initializing the object, which breaks the
       --  circuitry that detects and adds the additional arguments to the
@@ -5356,9 +5356,9 @@ package body Exp_Util is
       elsif Is_Build_In_Place_Function_Call (Exp) then
          null;
 
-     --  If the exprewsion is an uninitialized aggregate, no need to build
-     --  a subtype from the expression. because this may require the use
-     --  of dynamic memory to create the object.
+     --  If the expression is an uninitialized aggregate, no need to build
+     --  a subtype from the expression, because this may require the use of
+     --  dynamic memory to create the object.
 
       elsif Is_Uninitialized_Aggregate (Exp, Exp_Typ) then
          Rewrite (Subtype_Indic, New_Occurrence_Of (Etype (Exp), Sloc (N)));