This is the mail archive of the java-patches@gcc.gnu.org mailing list for the Java project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

Patch: FYI: re-sort arrays in gcj


I'm checking this in under the obvious fix rule.
This re-sorts some arrays which must be sorted.

Tom

Index: ChangeLog
from  Tom Tromey  <tromey@redhat.com>
	* gjavah.c (cxx_keywords): Re-sorted.
	* lex.c (cxx_keywords): Re-sorted.

Index: gjavah.c
===================================================================
RCS file: /cvs/gcc/gcc/gcc/java/gjavah.c,v
retrieving revision 1.77
diff -u -r1.77 gjavah.c
--- gjavah.c 2001/12/09 01:30:00 1.77
+++ gjavah.c 2001/12/09 05:00:37
@@ -424,9 +424,9 @@
   "__typeof__",
   "__volatile",
   "__volatile__",
-  "asm",
   "and",
   "and_eq",
+  "asm",
   "auto",
   "bitand",
   "bitor",
@@ -486,8 +486,8 @@
   "true",
   "try",
   "typedef",
-  "typename",
   "typeid",
+  "typename",
   "typeof",
   "union",
   "unsigned",
Index: lex.c
===================================================================
RCS file: /cvs/gcc/gcc/gcc/java/lex.c,v
retrieving revision 1.74
diff -u -r1.74 lex.c
--- lex.c 2001/12/03 19:13:40 1.74
+++ lex.c 2001/12/09 05:00:39
@@ -1887,9 +1887,9 @@
   "__typeof__",
   "__volatile",
   "__volatile__",
-  "asm",
   "and",
   "and_eq",
+  "asm",
   "auto",
   "bitand",
   "bitor",
@@ -1949,8 +1949,8 @@
   "true",
   "try",
   "typedef",
-  "typename",
   "typeid",
+  "typename",
   "typeof",
   "union",
   "unsigned",


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]