diff options
author | Robert Dewar <dewar@adacore.com> | 2006-02-15 10:34:36 +0100 |
---|---|---|
committer | Arnaud Charlet <charlet@gcc.gnu.org> | 2006-02-15 10:34:36 +0100 |
commit | 531eb217c9d0789de38c5ad1554be664500f106d (patch) | |
tree | 71ce7a8c7f11888da70d2c0ed33d5b8c5d758e4d /gcc/ada/lib-writ.adb | |
parent | e1458816e144304839f515e2c324763615f71020 (diff) | |
download | gcc-531eb217c9d0789de38c5ad1554be664500f106d.zip gcc-531eb217c9d0789de38c5ad1554be664500f106d.tar.gz gcc-531eb217c9d0789de38c5ad1554be664500f106d.tar.bz2 |
rtsfind.adb, [...]: Minor code reorganization (not Present should be No)
2006-02-13 Robert Dewar <dewar@adacore.com>
* rtsfind.adb, exp_prag.adb, lib-writ.adb, par-labl.adb,
sem_case.adb: Minor code reorganization (not Present should be No)
From-SVN: r111042
Diffstat (limited to 'gcc/ada/lib-writ.adb')
-rw-r--r-- | gcc/ada/lib-writ.adb | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/ada/lib-writ.adb b/gcc/ada/lib-writ.adb index e8065b4..524c1c6 100644 --- a/gcc/ada/lib-writ.adb +++ b/gcc/ada/lib-writ.adb @@ -6,7 +6,7 @@ -- -- -- B o d y -- -- -- --- Copyright (C) 1992-2005, Free Software Foundation, Inc. -- +-- Copyright (C) 1992-2006, Free Software Foundation, Inc. -- -- -- -- GNAT is free software; you can redistribute it and/or modify it under -- -- terms of the GNU General Public License as published by the Free Soft- -- @@ -850,7 +850,7 @@ package body Lib.Writ is S := Specification (U); - if not Present (Parameter_Specifications (S)) then + if No (Parameter_Specifications (S)) then if Nkind (S) = N_Procedure_Specification then Write_Info_Initiate ('M'); Write_Info_Str (" P"); |