diff options
author | Ghjuvan Lacambre <lacambre@adacore.com> | 2022-09-17 19:35:48 +0200 |
---|---|---|
committer | Marc Poulhiès <poulhies@adacore.com> | 2022-11-04 14:47:26 +0100 |
commit | 7d0d27d90dbd8ecab7f8852a807d86a84e31a61c (patch) | |
tree | 800a5e631c92c62e70cf51c453a453ebfc5b89c3 /gcc/ada/sem_warn.adb | |
parent | 587af00955c02040f1c552f7b0381f4ec4f1c3f9 (diff) | |
download | gcc-7d0d27d90dbd8ecab7f8852a807d86a84e31a61c.zip gcc-7d0d27d90dbd8ecab7f8852a807d86a84e31a61c.tar.gz gcc-7d0d27d90dbd8ecab7f8852a807d86a84e31a61c.tar.bz2 |
ada: Refactor: replace uses of `not Present(X)` with `No (X)`
`No (X)` is essentially `not Present (X)`, there's no reason for not
using this shorter form.
gcc/ada/
* checks.adb, exp_atag.adb, exp_attr.adb, exp_ch4.adb, exp_ch6.adb,
exp_ch7.adb, exp_dbug.adb, exp_disp.adb, exp_unst.adb, exp_util.adb,
freeze.adb, layout.adb, pprint.adb, rtsfind.adb, sem_aggr.adb,
sem_attr.adb, sem_case.adb, sem_ch12.adb, sem_ch13.adb, sem_ch3.adb,
sem_ch5.adb, sem_ch6.adb, sem_ch8.adb, sem_dim.adb, sem_prag.adb,
sem_util.adb, sem_warn.adb:
Replace uses of `not Present (X)` with `No (X)`.
Diffstat (limited to 'gcc/ada/sem_warn.adb')
-rw-r--r-- | gcc/ada/sem_warn.adb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/ada/sem_warn.adb b/gcc/ada/sem_warn.adb index 1d73f21..509efa5 100644 --- a/gcc/ada/sem_warn.adb +++ b/gcc/ada/sem_warn.adb @@ -4282,7 +4282,7 @@ package body Sem_Warn is if Ekind (Form) = E_Out_Parameter and then Never_Set_In_Source_Check_Spec (Form) and then Is_Scalar_Type (Etype (Form)) - and then not Present (Unset_Reference (Form)) + and then No (Unset_Reference (Form)) then -- Here all conditions are met, record possible unset reference |