[Ada] Fix the check of the 'Old prefix
authorEtienne Servais <servais@adacore.com>
Thu, 16 Dec 2021 13:17:40 +0000 (14:17 +0100)
committerPierre-Marie de Rodat <derodat@adacore.com>
Fri, 7 Jan 2022 16:24:15 +0000 (16:24 +0000)
gcc/ada/

* sem_attr.adb (Check_Reference): Fix condition.

gcc/ada/sem_attr.adb

index 017df8d..aa9ae3a 100644 (file)
@@ -5151,11 +5151,14 @@ package body Sem_Attr is
                --  Entities mentioned within the prefix of attribute 'Old must
                --  be global to the related postcondition. If this is not the
                --  case, then the scope of the local entity is nested within
-               --  that of the subprogram.
+               --  that of the subprogram. Moreover, we need to know whether
+               --  Entity (Nod) occurs in the tree rooted at the prefix to
+               --  ensure the entity is not declared within then prefix itself.
 
                elsif Is_Entity_Name (Nod)
                  and then Present (Entity (Nod))
                  and then Scope_Within (Scope (Entity (Nod)), Subp_Id)
+                 and then not In_Subtree (Entity (Nod), P)
                then
                   Error_Attr
                     ("prefix of attribute % cannot reference local entities",