public inbox for gcc-cvs@sourceware.org
help / color / mirror / Atom feed
* [gcc r12-2128] [Ada] Stronger assertion about flag for checking static expressions
@ 2021-07-07 16:26 Pierre-Marie de Rodat
  0 siblings, 0 replies; only message in thread
From: Pierre-Marie de Rodat @ 2021-07-07 16:26 UTC (permalink / raw)
  To: gcc-cvs

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

commit r12-2128-gcce46226b0bb33c688398f861c70dbb06c3e7bda
Author: Piotr Trojanek <trojanek@adacore.com>
Date:   Fri May 21 11:47:45 2021 +0200

    [Ada] Stronger assertion about flag for checking static expressions
    
    gcc/ada/
    
            * sem_eval.adb (Set_Checking_Potentially_Static_Expression):
            Stronger assertion.

Diff:
---
 gcc/ada/sem_eval.adb | 7 +++----
 1 file changed, 3 insertions(+), 4 deletions(-)

diff --git a/gcc/ada/sem_eval.adb b/gcc/ada/sem_eval.adb
index 7a70fd83b2a..a3a28644909 100644
--- a/gcc/ada/sem_eval.adb
+++ b/gcc/ada/sem_eval.adb
@@ -6481,11 +6481,10 @@ package body Sem_Eval is
 
    procedure Set_Checking_Potentially_Static_Expression (Value : Boolean) is
    begin
-      --  Verify that we're not currently checking for a potentially static
-      --  expression unless we're disabling such checking.
+      --  Verify that we only start/stop checking for a potentially static
+      --  expression and do not start or stop it twice in a row.
 
-      pragma Assert
-        (not Checking_For_Potentially_Static_Expression or else not Value);
+      pragma Assert (Checking_For_Potentially_Static_Expression /= Value);
 
       Checking_For_Potentially_Static_Expression := Value;
    end Set_Checking_Potentially_Static_Expression;


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

only message in thread, other threads:[~2021-07-07 16:26 UTC | newest]

Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-07-07 16:26 [gcc r12-2128] [Ada] Stronger assertion about flag for checking static expressions 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).