freeze.adb (Freeze_Entity): Do not generate a freeze node for a generic unit...
authorEd Schonberg <schonberg@adacore.com>
Wed, 6 Sep 2017 10:04:20 +0000 (10:04 +0000)
committerArnaud Charlet <charlet@gcc.gnu.org>
Wed, 6 Sep 2017 10:04:20 +0000 (12:04 +0200)
2017-09-06  Ed Schonberg  <schonberg@adacore.com>

* freeze.adb (Freeze_Entity): Do not generate a freeze
node for a generic unit, even if it includes delayed aspect
specifications. Freeze nodes for generic entities must never
appear in the tree that reaches the back-end of the compiler.

From-SVN: r251766

gcc/ada/ChangeLog
gcc/ada/freeze.adb

index 5c0b3d7..196edae 100644 (file)
@@ -1,3 +1,10 @@
+2017-09-06  Ed Schonberg  <schonberg@adacore.com>
+
+       * freeze.adb (Freeze_Entity): Do not generate a freeze
+       node for a generic unit, even if it includes delayed aspect
+       specifications. Freeze nodes for generic entities must never
+       appear in the tree that reaches the back-end of the compiler.
+
 2017-09-06  Yannick Moy  <moy@adacore.com>
 
        * treepr.adb (Print_Entity_Info): Do not print empty Elist.
index 4d8aa65..5540c78 100644 (file)
@@ -5489,6 +5489,13 @@ package body Freeze is
             then
                Explode_Initialization_Compound_Statement (E);
             end if;
+
+            --  Do not generate a freeze node for a generic unit.
+
+            if Is_Generic_Unit (E) then
+               Result := No_List;
+               goto Leave;
+            end if;
          end if;
 
       --  Case of a type or subtype being frozen