diff options
author | charlet <charlet@138bc75d-0d04-0410-961f-82ee72b054a4> | 2011-08-29 10:29:09 +0000 |
---|---|---|
committer | charlet <charlet@138bc75d-0d04-0410-961f-82ee72b054a4> | 2011-08-29 10:29:09 +0000 |
commit | 9b2fa50387730ce33a9541f77ed47f2974680d5d (patch) | |
tree | f9f1bcd3de6f91002e0d807025cfaffe86679552 /gcc/ada/par-ch4.adb | |
parent | 89cc7147fbacb5e850051c7996fe510d4379253d (diff) | |
download | gcc-9b2fa50387730ce33a9541f77ed47f2974680d5d.tar.gz |
2011-08-29 Robert Dewar <dewar@adacore.com>
* sem_ch8.adb: Minor reformatting.
2011-08-29 Bob Duff <duff@adacore.com>
* par-ch2.adb (P_Identifier): Warn that "some" is reserved in Ada 2012.
* par-ch4.adb (P_Quantified_Expression): Remove unnecessary code for
treating "some" as unreserved in earlier Ada versions. This is now
handled in Snames.Is_Keyword_Name. Parse "for some" using Tok_Some,
rather than Name_Some, since Tok_Some is now recognized as reserved.
* scans.adb (Initialize_Ada_Keywords): Handle Tok_Some like any other
reserved word.
* scans.ads: Minor comment fixes.
* snames.adb-tmpl (Is_Keyword_Name): Handle Ada 2012 reserved words as
for other language versions.
* scn.adb (Scan_Reserved_Identifier): Remove unnecessary code for
treating "some" as unreserved in earlier Ada versions. This is now
handled in Snames.Is_Keyword_Name.
* par-ch3.adb (P_Defining_Identifier): Warn that "some" is reserved in
Ada 2012.
(P_Subtype_Mark_Resync): Remove unnecessary code for treating "some" as
unreserved in earlier Ada versions. This is now handled in
Snames.Is_Keyword_Name.
* snames.ads-tmpl (Ada_2012_Reserved_Words): Handle Ada 2012 reserved
words as for other language versions.
* gnat_ugn.texi (-gnatwy): Fix documentation: this switch applies to
Ada 2012, not just Ada 2005.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@178191 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/ada/par-ch4.adb')
-rw-r--r-- | gcc/ada/par-ch4.adb | 24 |
1 files changed, 4 insertions, 20 deletions
diff --git a/gcc/ada/par-ch4.adb b/gcc/ada/par-ch4.adb index cbe68cfddaa..f2758ae125b 100644 --- a/gcc/ada/par-ch4.adb +++ b/gcc/ada/par-ch4.adb @@ -1432,19 +1432,9 @@ package body Ch4 is -- that doesn't belong to us! if Token in Token_Class_Eterm then - - -- If Some becomes a keyword, the following is needed to make it - -- acceptable in older versions of Ada. - - if Token = Tok_Some - and then Ada_Version < Ada_2012 - then - Scan_Reserved_Identifier (False); - else - Error_Msg_AP - ("expecting expression or component association"); - exit; - end if; + Error_Msg_AP + ("expecting expression or component association"); + exit; end if; -- Deal with misused box @@ -2564,13 +2554,7 @@ package body Ch4 is if Token = Tok_All then Set_All_Present (Node1); - -- We treat Some as a non-reserved keyword, so it appears to the scanner - -- as an identifier. If Some is made into a reserved word, the check - -- below is against Tok_Some. - - elsif Token /= Tok_Identifier - or else Chars (Token_Node) /= Name_Some - then + elsif Token /= Tok_Some then Error_Msg_AP ("missing quantifier"); raise Error_Resync; end if; |