summaryrefslogtreecommitdiff
path: root/gcc/ada/snames.adb-tmpl
diff options
context:
space:
mode:
authorcharlet <charlet@138bc75d-0d04-0410-961f-82ee72b054a4>2011-08-29 10:32:18 +0000
committercharlet <charlet@138bc75d-0d04-0410-961f-82ee72b054a4>2011-08-29 10:32:18 +0000
commit8df4f2a580d2475189691fd7d6744cde67c025de (patch)
tree572d399be53e494cace1738e96d721b8531789ca /gcc/ada/snames.adb-tmpl
parent9b2fa50387730ce33a9541f77ed47f2974680d5d (diff)
downloadgcc-8df4f2a580d2475189691fd7d6744cde67c025de.tar.gz
2011-08-29 Robert Dewar <dewar@adacore.com>
* snames.adb-tmpl, sem_ch13.adb: Minor reformatting Minor code reorganization. 2011-08-29 Bob Duff <duff@adacore.com> * usage.adb (-gnatwy): Fix documentation: this switch applies to Ada 2012, not just Ada 2005. 2011-08-29 Vincent Celier <celier@adacore.com> * gnat_ugn.texi: Indicate that when the compiler is called by gnatmake with a project file or with gprbuid, if -gnatep= is specified, the builder may need to be invoked with -x. 2011-08-29 Tristan Gingold <gingold@adacore.com> * a-exexpr-gcc.adb: Minor comment fix. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@178192 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/ada/snames.adb-tmpl')
-rw-r--r--gcc/ada/snames.adb-tmpl6
1 files changed, 3 insertions, 3 deletions
diff --git a/gcc/ada/snames.adb-tmpl b/gcc/ada/snames.adb-tmpl
index 197cb350fb4..e6753b583de 100644
--- a/gcc/ada/snames.adb-tmpl
+++ b/gcc/ada/snames.adb-tmpl
@@ -377,11 +377,11 @@ package body Snames is
begin
return Get_Name_Table_Byte (N) /= 0
and then (Ada_Version >= Ada_95
- or else N not in Ada_95_Reserved_Words)
+ or else N not in Ada_95_Reserved_Words)
and then (Ada_Version >= Ada_2005
- or else N not in Ada_2005_Reserved_Words)
+ or else N not in Ada_2005_Reserved_Words)
and then (Ada_Version >= Ada_2012
- or else N not in Ada_2012_Reserved_Words);
+ or else N not in Ada_2012_Reserved_Words);
end Is_Keyword_Name;
----------------------------