public inbox for gcc-cvs@sourceware.org
help / color / mirror / Atom feed
* [gcc r11-5341] [Ada] Fix internal compilation error on circular type in SPARK code
@ 2020-11-25 13:28 Pierre-Marie de Rodat
  0 siblings, 0 replies; only message in thread
From: Pierre-Marie de Rodat @ 2020-11-25 13:28 UTC (permalink / raw)
  To: gcc-cvs

https://gcc.gnu.org/g:a8c229e14c4d6c5c6e2d1ff18741e89d7149d81d

commit r11-5341-ga8c229e14c4d6c5c6e2d1ff18741e89d7149d81d
Author: Yannick Moy <moy@adacore.com>
Date:   Mon Oct 12 17:32:45 2020 +0200

    [Ada] Fix internal compilation error on circular type in SPARK code
    
    gcc/ada/
    
            * sem_ch3.adb (Access_Type_Declaration): Set Etype before
            checking for volatility compatibility.

Diff:
---
 gcc/ada/sem_ch3.adb | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/gcc/ada/sem_ch3.adb b/gcc/ada/sem_ch3.adb
index f5c78081988..8085867dee6 100644
--- a/gcc/ada/sem_ch3.adb
+++ b/gcc/ada/sem_ch3.adb
@@ -1411,6 +1411,8 @@ package body Sem_Ch3 is
          Set_Is_Tagged_Type (T, False);
       end if;
 
+      Set_Etype (T, T);
+
       --  For SPARK, check that the designated type is compatible with
       --  respect to volatility with the access type.
 
@@ -1431,8 +1433,6 @@ package body Sem_Ch3 is
             Srcpos_Bearer => T);
       end if;
 
-      Set_Etype (T, T);
-
       --  If the type has appeared already in a with_type clause, it is frozen
       --  and the pointer size is already set. Else, initialize.


^ permalink raw reply	[flat|nested] only message in thread

only message in thread, other threads:[~2020-11-25 13:28 UTC | newest]

Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-11-25 13:28 [gcc r11-5341] [Ada] Fix internal compilation error on circular type in SPARK code Pierre-Marie de Rodat

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).