public inbox for gcc-cvs@sourceware.org
help / color / mirror / Atom feed
* [gcc r14-1848] ada: Fix missing error on function call returning incomplete view
@ 2023-06-15  8:02 Marc Poulhi?s
  0 siblings, 0 replies; only message in thread
From: Marc Poulhi?s @ 2023-06-15  8:02 UTC (permalink / raw)
  To: gcc-cvs

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

commit r14-1848-g63a4bcf377ae6594ca84b5dac102ab9f536fc068
Author: Eric Botcazou <ebotcazou@adacore.com>
Date:   Fri May 12 20:20:16 2023 +0200

    ada: Fix missing error on function call returning incomplete view
    
    Testing for the presence of Non_Limited_View is not sufficient to detect
    whether the nonlimited view has been analyzed because Build_Limited_Views
    always sets the field on the limited view.  Instead the discriminant is
    whether this nonlimited view is itself an incomplete type.
    
    gcc/ada/
    
            * sem_ch4.adb (Analyze_Call): Adjust the test to detect the presence
            of an incomplete view of a type on a function call.

Diff:
---
 gcc/ada/sem_ch4.adb | 6 ++++++
 1 file changed, 6 insertions(+)

diff --git a/gcc/ada/sem_ch4.adb b/gcc/ada/sem_ch4.adb
index 02c59284994..b4b158a3ff4 100644
--- a/gcc/ada/sem_ch4.adb
+++ b/gcc/ada/sem_ch4.adb
@@ -1540,8 +1540,14 @@ package body Sem_Ch4 is
 
                Set_Etype (N, Full_View (Etype (N)));
 
+            --  If the call is within a thunk, the nonlimited view should be
+            --  analyzed eventually (see also Analyze_Return_Type).
+
             elsif From_Limited_With (Etype (N))
               and then Present (Non_Limited_View (Etype (N)))
+              and then
+                (Ekind (Non_Limited_View (Etype (N))) /= E_Incomplete_Type
+                  or else Is_Thunk (Current_Scope))
             then
                Set_Etype (N, Non_Limited_View (Etype (N)));

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

only message in thread, other threads:[~2023-06-15  8:02 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:02 [gcc r14-1848] ada: Fix missing error on function call returning incomplete view 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).