utils.c (note_types_used_by_globals): Tweak comment.
authorEric Botcazou <ebotcazou@gcc.gnu.org>
Sat, 6 Jun 2015 07:44:03 +0000 (07:44 +0000)
committerEric Botcazou <ebotcazou@gcc.gnu.org>
Sat, 6 Jun 2015 07:44:03 +0000 (07:44 +0000)
* gcc-interface/utils.c (note_types_used_by_globals): Tweak comment.
* gcc-interface/decl.c (gnat_to_gnu_entity): Likewise.

From-SVN: r224184

gcc/ada/gcc-interface/decl.c
gcc/ada/gcc-interface/utils.c

index 42e2cfb55be782a608767d7aeefc533fec94440f..3c243a24883183e9d5a98c2d3f13c7a323ee14cf 100644 (file)
@@ -5185,7 +5185,7 @@ gnat_to_gnu_entity (Entity_Id gnat_entity, tree gnu_expr, int definition)
       && !Present (Alias (gnat_entity))
       && !(Present (Renamed_Object (gnat_entity)) && saved))
     {
-      /* ?? DECL_ARTIFICIAL, and possibly DECL_IGNORED_P below, should
+      /* ??? DECL_ARTIFICIAL, and possibly DECL_IGNORED_P below, should
         be set before calling rest_of_decl_compilation above (through
         create_var_decl_1).  This is because rest_of_decl_compilation
         calls the debugging backend and will create a DIE without
index 307a84104844348d0de644cab54068e773a05cdf..e24a295318aff0a09725c751144b513f349a607a 100644 (file)
@@ -5182,13 +5182,11 @@ smaller_form_type_p (tree type, tree orig_type)
   return tree_int_cst_lt (size, osize) != 0;
 }
 
-/* Perform final processing on global variables.  */
-
-static GTY (()) tree dummy_global;
-
 /* Keep track of types used at the global level and emit debug info
    for all global types.  */
 
+static GTY (()) tree dummy_global;
+
 void
 note_types_used_by_globals (void)
 {
@@ -5219,10 +5217,10 @@ note_types_used_by_globals (void)
        }
     }
 
-  /* Output debug information for all global type declarations first.  This
-     ensures that global types whose compilation haven't been finalized yet,
-     for example pointers to Taft amendment types, have their compilation
-     finalized in the right context.  */
+  /* Output debug information for all global type declarations.  This ensures
+     that global types whose compilation cannot been finalized earlier, e.g.
+     pointers to Taft amendment types, have their compilation finalized in
+     the right context.  */
   FOR_EACH_VEC_SAFE_ELT (type_decls, i, iter)
     if (!DECL_IGNORED_P (iter))
       debug_hooks->type_decl (iter, false);