aboutsummaryrefslogtreecommitdiff
path: root/gcc/ada
diff options
context:
space:
mode:
authorPiotr Trojanek <trojanek@adacore.com>2022-09-07 17:22:47 +0200
committerMarc Poulhiès <poulhies@adacore.com>2022-11-07 09:36:33 +0100
commitbb513a0d0f5e88b65abbab304692622f40641694 (patch)
treee4d89f11688e759b9863a98abf74b05ce635e89c /gcc/ada
parent72ae51d581dc8bcf8dcec9b5e0e1560d9e4099d1 (diff)
downloadgcc-bb513a0d0f5e88b65abbab304692622f40641694.zip
gcc-bb513a0d0f5e88b65abbab304692622f40641694.tar.gz
gcc-bb513a0d0f5e88b65abbab304692622f40641694.tar.bz2
ada: Flip warning suppression routine to positive meaning
Subprogram names starting with No_ seem unnecessarily confusing. Cleanup related to improved detection of references to uninitialized objects; semantics is unaffected. gcc/ada/ * sem_warn.adb (Warn_On_In_Out): Remove No_ prefix; flip return values between True and False; adapt caller.
Diffstat (limited to 'gcc/ada')
-rw-r--r--gcc/ada/sem_warn.adb27
1 files changed, 11 insertions, 16 deletions
diff --git a/gcc/ada/sem_warn.adb b/gcc/ada/sem_warn.adb
index a1a59a88..9dccf0d 100644
--- a/gcc/ada/sem_warn.adb
+++ b/gcc/ada/sem_warn.adb
@@ -2971,7 +2971,7 @@ package body Sem_Warn is
procedure Output_Non_Modified_In_Out_Warnings is
- function No_Warn_On_In_Out (E : Entity_Id) return Boolean;
+ function Warn_On_In_Out (E : Entity_Id) return Boolean;
-- Given a formal parameter entity E, determines if there is a reason to
-- suppress IN OUT warnings (not modified, could be IN) for formals of
-- the subprogram. We suppress these warnings if Warnings Off is set, or
@@ -2980,11 +2980,11 @@ package body Sem_Warn is
-- context may force use of IN OUT, even if the parameter is not
-- modified for this particular case).
- -----------------------
- -- No_Warn_On_In_Out --
- -----------------------
+ --------------------
+ -- Warn_On_In_Out --
+ --------------------
- function No_Warn_On_In_Out (E : Entity_Id) return Boolean is
+ function Warn_On_In_Out (E : Entity_Id) return Boolean is
S : constant Entity_Id := Scope (E);
SE : constant Entity_Id := Spec_Entity (E);
@@ -2995,7 +2995,7 @@ package body Sem_Warn is
if Address_Taken (S)
or else (Present (SE) and then Address_Taken (Scope (SE)))
then
- return True;
+ return False;
-- Do not warn if used as a generic actual, since the generic may be
-- what is forcing the use of an "unnecessary" IN OUT.
@@ -3003,19 +3003,19 @@ package body Sem_Warn is
elsif Used_As_Generic_Actual (S)
or else (Present (SE) and then Used_As_Generic_Actual (Scope (SE)))
then
- return True;
+ return False;
-- Else test warnings off on the subprogram
elsif Warnings_Off (S) then
- return True;
+ return False;
-- All tests for suppressing warning failed
else
- return False;
+ return True;
end if;
- end No_Warn_On_In_Out;
+ end Warn_On_In_Out;
-- Start of processing for Output_Non_Modified_In_Out_Warnings
@@ -3030,12 +3030,7 @@ package body Sem_Warn is
-- Suppress warning in specific cases (see details in comments for
-- No_Warn_On_In_Out).
- if No_Warn_On_In_Out (E1) then
- null;
-
- -- Here we generate the warning
-
- else
+ if Warn_On_In_Out (E1) then
-- If -gnatwk is set then output message that it could be IN
if not Is_Trivial_Subprogram (Scope (E1)) then