public inbox for gcc-cvs@sourceware.org
help / color / mirror / Atom feed
* [gcc r13-539] [Ada] Fix small glitch in Expand_N_Full_Type_Declaration
@ 2022-05-17  8:28 Pierre-Marie de Rodat
  0 siblings, 0 replies; only message in thread
From: Pierre-Marie de Rodat @ 2022-05-17  8:28 UTC (permalink / raw)
  To: gcc-cvs

https://gcc.gnu.org/g:42fe7c9a809198b50070eb9033ba2be1447519b9

commit r13-539-g42fe7c9a809198b50070eb9033ba2be1447519b9
Author: Eric Botcazou <ebotcazou@adacore.com>
Date:   Wed Mar 23 23:47:06 2022 +0100

    [Ada] Fix small glitch in Expand_N_Full_Type_Declaration
    
    The original node is not guaranteed to also be an
    N_Full_Type_Declaration, so the code needs to look into the node itself.
    
    gcc/ada/
    
            * exp_ch3.adb (Expand_N_Full_Type_Declaration): Look into N.

Diff:
---
 gcc/ada/exp_ch3.adb | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

diff --git a/gcc/ada/exp_ch3.adb b/gcc/ada/exp_ch3.adb
index f2deff74522..4216fecc438 100644
--- a/gcc/ada/exp_ch3.adb
+++ b/gcc/ada/exp_ch3.adb
@@ -6102,8 +6102,7 @@ package body Exp_Ch3 is
          Par_Id := Base_Type (Full_View (Par_Id));
       end if;
 
-      if Nkind (Type_Definition (Original_Node (N))) =
-                                                   N_Derived_Type_Definition
+      if Nkind (Type_Definition (N)) = N_Derived_Type_Definition
         and then not Is_Tagged_Type (Def_Id)
         and then Present (Freeze_Node (Par_Id))
         and then Present (TSS_Elist (Freeze_Node (Par_Id)))


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

only message in thread, other threads:[~2022-05-17  8:28 UTC | newest]

Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-05-17  8:28 [gcc r13-539] [Ada] Fix small glitch in Expand_N_Full_Type_Declaration 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).