aboutsummaryrefslogtreecommitdiff
path: root/gcc/ada/exp_ch3.adb
diff options
context:
space:
mode:
authorArnaud Charlet <charlet@gcc.gnu.org>2013-01-02 10:51:35 +0100
committerArnaud Charlet <charlet@gcc.gnu.org>2013-01-02 10:51:35 +0100
commit324ac54054c45c6641e601f02b74568c277f903d (patch)
tree6c0f061975c47c8cd7246bcfe9ca7b69a6bec8f8 /gcc/ada/exp_ch3.adb
parentdbfeb4faf0c407d23fc6c47ad126ef26bd417aa7 (diff)
downloadgcc-324ac54054c45c6641e601f02b74568c277f903d.zip
gcc-324ac54054c45c6641e601f02b74568c277f903d.tar.gz
gcc-324ac54054c45c6641e601f02b74568c277f903d.tar.bz2
[multiple changes]
2013-01-02 Robert Dewar <dewar@adacore.com> * errout.ads: Minor comment fixes. * opt.ads: Minor comment additions. * exp_aggr.adb: Add tags to warning messages * exp_ch11.adb, exp_ch3.adb, exp_ch4.adb, exp_util.adb, sem_aggr.adb, sem_attr.adb, sem_case.adb, sem_cat.adb, sem_ch3.adb, sem_ch4.adb, sem_ch5.adb, sem_disp.adb, sem_dist.adb, sem_elab.adb, sem_eval.adb, sem_intr.adb, sem_mech.adb, sem_prag.adb, sem_res.adb, sem_util.adb, sem_warn.adb: Add tags to warning messages 2013-01-02 Doug Rupp <rupp@adacore.com> * init.c [VMS] Remove subtest on reason mask for ACCVIO that is a C_E. 2013-01-02 Ed Schonberg <schonberg@adacore.com> * sem_ch12.adb: Recover source name for renamed packagea. From-SVN: r194786
Diffstat (limited to 'gcc/ada/exp_ch3.adb')
-rw-r--r--gcc/ada/exp_ch3.adb9
1 files changed, 4 insertions, 5 deletions
diff --git a/gcc/ada/exp_ch3.adb b/gcc/ada/exp_ch3.adb
index 2434d5b..096d14e 100644
--- a/gcc/ada/exp_ch3.adb
+++ b/gcc/ada/exp_ch3.adb
@@ -7132,7 +7132,7 @@ package body Exp_Ch3 is
if Is_Ancestor (RSPWS, Etype (Pool)) then
Error_Msg_N
- ("?subpool access type has deeper accessibility " &
+ ("??subpool access type has deeper accessibility " &
"level than pool", Def_Id);
Append_Freeze_Action (Def_Id,
@@ -7744,14 +7744,13 @@ package body Exp_Ch3 is
if Warning_Needed then
Error_Msg_N
- ("Objects of the type cannot be initialized " &
- "statically by default?",
- Parent (E));
+ ("Objects of the type cannot be initialized "
+ & "statically by default??", Parent (E));
end if;
end if;
else
- Error_Msg_N ("Object cannot be initialized statically?", E);
+ Error_Msg_N ("Object cannot be initialized statically??", E);
end if;
end if;
end Initialization_Warning;