[Ada] Handle explicit dereferences in expression functions
authorEd Schonberg <schonberg@adacore.com>
Tue, 12 May 2020 12:20:22 +0000 (08:20 -0400)
committerPierre-Marie de Rodat <derodat@adacore.com>
Tue, 7 Jul 2020 09:26:56 +0000 (05:26 -0400)
gcc/ada/

* freeze.adb (Freeze_Expr_Types): Freeze the designated type of
the explicit dereference.

gcc/ada/freeze.adb

index 7df283a32c4434bd660ea458bdbdc9f30e3acae2..fd76e7bc63cc5e245c19fdcc3835fa32a239e87a 100644 (file)
@@ -7934,6 +7934,15 @@ package body Freeze is
            and then Node = Controlling_Argument (Parent (Node))
          then
             Check_And_Freeze_Type (Designated_Type (Etype (Node)));
+
+         --  An explicit dereference freezes the designated type as well,
+         --  even though that type is not attached to an entity in the
+         --  expression.
+
+         elsif Nkind (Node) in N_Has_Etype
+           and then Nkind (Parent (Node)) = N_Explicit_Dereference
+         then
+            Check_And_Freeze_Type (Designated_Type (Etype (Node)));
          end if;
 
          --  No point in posting several errors on the same expression