]> gcc.gnu.org Git - gcc.git/commitdiff
sem_ch13.adb (Add_Invariants, [...]): Do not perform the replacement on the expressio...
authorEd Schonberg <schonberg@adacore.com>
Fri, 17 Oct 2014 09:14:42 +0000 (09:14 +0000)
committerArnaud Charlet <charlet@gcc.gnu.org>
Fri, 17 Oct 2014 09:14:42 +0000 (11:14 +0200)
2014-10-17  Ed Schonberg  <schonberg@adacore.com>

* sem_ch13.adb (Add_Invariants, Replace_Type_References): Do
not perform the replacement on the expression for an inherited
class-wide invariant if in ASIS_Mode and the type reference is
already the prefix of a 'Class attribute reference: the expression
has already been preanalyzed and the replacement performed when
first encountered on the declaration of the parent type.

From-SVN: r216382

gcc/ada/ChangeLog
gcc/ada/sem_ch13.adb

index f8c114560edf3d931132b6551f05d7a83d1bcffe..3dfcd9e8b5cc04d9d760e1eb42f072b05324e210 100644 (file)
@@ -1,3 +1,12 @@
+2014-10-17  Ed Schonberg  <schonberg@adacore.com>
+
+       * sem_ch13.adb (Add_Invariants, Replace_Type_References): Do
+       not perform the replacement on the expression for an inherited
+       class-wide invariant if in ASIS_Mode and the type reference is
+       already the prefix of a 'Class attribute reference: the expression
+       has already been preanalyzed and the replacement performed when
+       first encountered on the declaration of the parent type.
+
 2014-10-17  Robert Dewar  <dewar@adacore.com>
 
        * sem_ch5.adb, sem_ch7.adb, prj-nmsc.adb, sem_ch13.adb, exp_ch3.adb:
index ba5a1ee9c224f92c013f97e3bae5af18a28ff5cd..9ab019a064834313279a3bee26c6c8ad9b740842 100644 (file)
@@ -7505,18 +7505,30 @@ package body Sem_Ch13 is
             end if;
 
             --  Invariant'Class, replace with T'Class (obj)
+            --  In ASIS mode, an inherited item is analyzed already, and the
+            --  replacement has been done, so do not repeat transformation
+            --  to prevent ill-formed tree.
 
             if Class_Present (Ritem) then
-               Rewrite (N,
-                 Make_Type_Conversion (Sloc (N),
-                   Subtype_Mark =>
-                     Make_Attribute_Reference (Sloc (N),
-                       Prefix         => New_Occurrence_Of (T, Sloc (N)),
-                       Attribute_Name => Name_Class),
-                   Expression   => Make_Identifier (Sloc (N), Object_Name)));
-
-               Set_Entity (Expression (N), Object_Entity);
-               Set_Etype  (Expression (N), Typ);
+               if ASIS_Mode
+                 and then Nkind (Parent (N)) = N_Attribute_Reference
+                 and then Attribute_Name (Parent (N)) = Name_Class
+               then
+                  null;
+
+               else
+                  Rewrite (N,
+                    Make_Type_Conversion (Sloc (N),
+                      Subtype_Mark =>
+                        Make_Attribute_Reference (Sloc (N),
+                          Prefix         => New_Occurrence_Of (T, Sloc (N)),
+                          Attribute_Name => Name_Class),
+                      Expression   =>
+                         Make_Identifier (Sloc (N), Object_Name)));
+
+                  Set_Entity (Expression (N), Object_Entity);
+                  Set_Etype  (Expression (N), Typ);
+               end if;
 
             --  Invariant, replace with obj
 
This page took 0.07807 seconds and 5 git commands to generate.