aboutsummaryrefslogtreecommitdiff
path: root/gcc/ada/par-util.adb
diff options
context:
space:
mode:
authorArnaud Charlet <charlet@gcc.gnu.org>2013-01-02 10:56:53 +0100
committerArnaud Charlet <charlet@gcc.gnu.org>2013-01-02 10:56:53 +0100
commit685bc70fd8dfd17fa62266c2ad05567b37540119 (patch)
tree879be21173429efea2e6377f4341e24c29907f6e /gcc/ada/par-util.adb
parent324ac54054c45c6641e601f02b74568c277f903d (diff)
downloadgcc-685bc70fd8dfd17fa62266c2ad05567b37540119.zip
gcc-685bc70fd8dfd17fa62266c2ad05567b37540119.tar.gz
gcc-685bc70fd8dfd17fa62266c2ad05567b37540119.tar.bz2
[multiple changes]
2013-01-02 Robert Dewar <dewar@adacore.com> * checks.adb, exp_ch4.adb, exp_ch6.adb, exp_ch7.adb, exp_ch9.adb, exp_disp.adb, exp_dist.adb, exp_intr.adb, exp_prag.adb, exp_util.adb, freeze.adb, gnat1drv.adb, inline.adb, layout.adb, lib-xref.adb, par-ch10.adb, par-labl.adb, par-load.adb, par-util.adb, restrict.adb, sem_ch13.adb, sem_ch4.adb, sem_ch6.adb, sem_dim.adb, sem_elab.adb, sem_res.adb, sem_warn.adb, sinput-l.adb: Add tags to warning messages. * sem_ch6.ads, warnsw.ads, opt.ads: Minor comment updates. 2013-01-02 Robert Dewar <dewar@adacore.com> * err_vars.ads: Minor comment fix. 2013-01-02 Ed Schonberg <schonberg@adacore.com> * sem_ch12.adb: Refine predicate. From-SVN: r194787
Diffstat (limited to 'gcc/ada/par-util.adb')
-rw-r--r--gcc/ada/par-util.adb6
1 files changed, 3 insertions, 3 deletions
diff --git a/gcc/ada/par-util.adb b/gcc/ada/par-util.adb
index 3baf9f5..fa592a7 100644
--- a/gcc/ada/par-util.adb
+++ b/gcc/ada/par-util.adb
@@ -186,7 +186,7 @@ package body Util is
or else (Token_Name = Name_Interface
and then Prev_Token /= Tok_Pragma)
then
- Error_Msg_N ("& is a reserved word in Ada 2005?", Token_Node);
+ Error_Msg_N ("& is a reserved word in Ada 2005?y?", Token_Node);
end if;
end if;
@@ -196,7 +196,7 @@ package body Util is
and then Warn_On_Ada_2012_Compatibility
then
if Token_Name = Name_Some then
- Error_Msg_N ("& is a reserved word in Ada 2012?", Token_Node);
+ Error_Msg_N ("& is a reserved word in Ada 2012?y?", Token_Node);
end if;
end if;
@@ -761,7 +761,7 @@ package body Util is
C : constant Entity_Id := Current_Entity (N);
begin
if Present (C) and then Sloc (C) = Standard_Location then
- Error_Msg_N ("redefinition of entity& in Standard?", N);
+ Error_Msg_N ("redefinition of entity& in Standard?K?", N);
end if;
end;
end if;