aboutsummaryrefslogtreecommitdiff
path: root/gcc/ada/sprint.adb
diff options
context:
space:
mode:
authorArnaud Charlet <charlet@gcc.gnu.org>2014-07-17 08:58:11 +0200
committerArnaud Charlet <charlet@gcc.gnu.org>2014-07-17 08:58:11 +0200
commit52d9ba4d30e98209b2d7f0a04fa2d59ce2e6b3af (patch)
treed10ed628bde3ad6b91d1887db6a58b07e4b861d9 /gcc/ada/sprint.adb
parentb16ffa33326b35865432c6c08c4d951bfd9e1411 (diff)
downloadgcc-52d9ba4d30e98209b2d7f0a04fa2d59ce2e6b3af.zip
gcc-52d9ba4d30e98209b2d7f0a04fa2d59ce2e6b3af.tar.gz
gcc-52d9ba4d30e98209b2d7f0a04fa2d59ce2e6b3af.tar.bz2
[multiple changes]
2014-07-17 Robert Dewar <dewar@adacore.com> * aspects.ads, aspects.adb: Add entries for aspect Annotate. * gnat_rm.texi: Document Entity argument for pragma Annotate and Annotate aspect. * sem_ch13.adb (Analyze_Aspect_Specification): Add processing for Annotate aspect. * sem_prag.adb (Analyze_Pragma, case Annotate): Allow optional Entity argument at end. * sinfo.ads (N_Aspect_Specification): Add note on Annotate aspect. 2014-07-17 Tristan Gingold <gingold@adacore.com> * s-imguns.ads: Fix minor typo. 2014-07-17 Thomas Quinot <quinot@adacore.com> * sprint.adb: Minor reformatting. From-SVN: r212732
Diffstat (limited to 'gcc/ada/sprint.adb')
-rw-r--r--gcc/ada/sprint.adb4
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/ada/sprint.adb b/gcc/ada/sprint.adb
index f6980ab..2952617 100644
--- a/gcc/ada/sprint.adb
+++ b/gcc/ada/sprint.adb
@@ -2247,7 +2247,7 @@ package body Sprint is
Write_Str_With_Col_Check ("not null ");
end if;
- -- Print type, we used to print the Object_Definition from
+ -- Print type. We used to print the Object_Definition from
-- the node, but it is much more useful to print the Etype
-- of the defining identifier for the case where the nominal
-- type is an unconstrained array type. For example, this
@@ -2267,7 +2267,7 @@ package body Sprint is
then
Sprint_Node (Etype (Def_Id));
- -- In other cases, the nominal type is fine to print
+ -- In other cases, the nominal type is fine to print
else
Sprint_Node (Odef);