public inbox for gcc-cvs@sourceware.org
help / color / mirror / Atom feed
* [gcc r14-1843] ada: Crash on C++ constructor of private type
@ 2023-06-15  8:01 Marc Poulhi?s
  0 siblings, 0 replies; only message in thread
From: Marc Poulhi?s @ 2023-06-15  8:01 UTC (permalink / raw)
  To: gcc-cvs

https://gcc.gnu.org/g:63c8e3a136860f967ba29ba64ef261f94ceb6fc8

commit r14-1843-g63c8e3a136860f967ba29ba64ef261f94ceb6fc8
Author: Javier Miranda <miranda@adacore.com>
Date:   Mon May 8 19:10:56 2023 +0000

    ada: Crash on C++ constructor of private type
    
    The compiler crashes compiling a function that has pragma
    CPP_constructor when its return type is a private type.
    
    gcc/ada/
    
            * sem_util.adb
            (Is_CPP_Constructor_Call): Add missing support for calls to
            functions returning a private type.

Diff:
---
 gcc/ada/sem_util.adb | 20 ++++++++++++++++++--
 1 file changed, 18 insertions(+), 2 deletions(-)

diff --git a/gcc/ada/sem_util.adb b/gcc/ada/sem_util.adb
index 3fd3eb45f33..3a64047d45c 100644
--- a/gcc/ada/sem_util.adb
+++ b/gcc/ada/sem_util.adb
@@ -16153,9 +16153,25 @@ package body Sem_Util is
    -----------------------------
 
    function Is_CPP_Constructor_Call (N : Node_Id) return Boolean is
+      Ret_Typ : Entity_Id;
+
    begin
-      return Nkind (N) = N_Function_Call
-        and then Is_CPP_Class (Etype (Etype (N)))
+      if Nkind (N) /= N_Function_Call then
+         return False;
+      end if;
+
+      Ret_Typ := Base_Type (Etype (N));
+
+      if Is_Class_Wide_Type (Ret_Typ) then
+         Ret_Typ := Root_Type (Ret_Typ);
+      end if;
+
+      if Is_Private_Type (Ret_Typ) then
+         Ret_Typ := Underlying_Type (Ret_Typ);
+      end if;
+
+      return Present (Ret_Typ)
+        and then Is_CPP_Class (Ret_Typ)
         and then Is_Constructor (Entity (Name (N)))
         and then Is_Imported (Entity (Name (N)));
    end Is_CPP_Constructor_Call;

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

only message in thread, other threads:[~2023-06-15  8:01 UTC | newest]

Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2023-06-15  8:01 [gcc r14-1843] ada: Crash on C++ constructor of private type Marc Poulhi?s

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).