aboutsummaryrefslogtreecommitdiff
path: root/gcc/ada/rtsfind.adb
diff options
context:
space:
mode:
authorGhjuvan Lacambre <lacambre@adacore.com>2022-09-17 19:35:48 +0200
committerMarc Poulhiès <poulhies@adacore.com>2022-11-04 14:47:26 +0100
commit7d0d27d90dbd8ecab7f8852a807d86a84e31a61c (patch)
tree800a5e631c92c62e70cf51c453a453ebfc5b89c3 /gcc/ada/rtsfind.adb
parent587af00955c02040f1c552f7b0381f4ec4f1c3f9 (diff)
downloadgcc-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/rtsfind.adb')
-rw-r--r--gcc/ada/rtsfind.adb4
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/ada/rtsfind.adb b/gcc/ada/rtsfind.adb
index cda13d4..2c22938 100644
--- a/gcc/ada/rtsfind.adb
+++ b/gcc/ada/rtsfind.adb
@@ -1668,7 +1668,7 @@ package body Rtsfind is
-- Load unit if unit not previously loaded
- if not Present (U.Entity) then
+ if No (U.Entity) then
Load_RTU (U_Id, Id => E);
end if;
@@ -1687,7 +1687,7 @@ package body Rtsfind is
E1 := First_Entity (Pkg_Ent);
while Present (E1) loop
if Ename = Chars (E1) then
- pragma Assert (not Present (Found_E));
+ pragma Assert (No (Found_E));
Found_E := E1;
end if;