public inbox for gcc-cvs@sourceware.org
help / color / mirror / Atom feed
From: Pierre-Marie de Rodat <pmderodat@gcc.gnu.org>
To: gcc-cvs@gcc.gnu.org
Subject: [gcc r12-1613] [Ada] Relax null exclusion mismatch check in Relaxed_RM_Semantics mode
Date: Fri, 18 Jun 2021 08:37:49 +0000 (GMT)	[thread overview]
Message-ID: <20210618083749.3678239B4409@sourceware.org> (raw)

https://gcc.gnu.org/g:0becb0faaecc79df3de24bd5467b90cfd08a829a

commit r12-1613-g0becb0faaecc79df3de24bd5467b90cfd08a829a
Author: Arnaud Charlet <charlet@adacore.com>
Date:   Mon Mar 15 03:45:35 2021 -0400

    [Ada] Relax null exclusion mismatch check in Relaxed_RM_Semantics mode
    
    gcc/ada/
    
            * sem_ch6.adb (Null_Exclusions_Match): Relax null exclusion
            mismatch check when Relaxed_RM_Semantics is set.

Diff:
---
 gcc/ada/sem_ch6.adb | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

diff --git a/gcc/ada/sem_ch6.adb b/gcc/ada/sem_ch6.adb
index 7bca9df7225..d46d3f30326 100644
--- a/gcc/ada/sem_ch6.adb
+++ b/gcc/ada/sem_ch6.adb
@@ -6265,7 +6265,9 @@ package body Sem_Ch6 is
 
             --  Null exclusion must match
 
-            if not Null_Exclusions_Match (Old_Formal, New_Formal) then
+            if not Relaxed_RM_Semantics
+              and then not Null_Exclusions_Match (Old_Formal, New_Formal)
+            then
                Conformance_Error
                  ("\null exclusion for& does not match", New_Formal);


                 reply	other threads:[~2021-06-18  8:37 UTC|newest]

Thread overview: [no followups] expand[flat|nested]  mbox.gz  Atom feed

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20210618083749.3678239B4409@sourceware.org \
    --to=pmderodat@gcc.gnu.org \
    --cc=gcc-cvs@gcc.gnu.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
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).