src/hotspot/share/adlc/adlparse.cpp
changeset 51050 96ea37459ca7
parent 47216 71c04702a3d5
child 52583 a3aa8d5380d9
--- a/src/hotspot/share/adlc/adlparse.cpp	Thu Jul 12 10:41:44 2018 -0400
+++ b/src/hotspot/share/adlc/adlparse.cpp	Thu Jul 12 17:29:48 2018 -0700
@@ -4564,7 +4564,7 @@
 // string(still inside the file buffer).  Returns a pointer to the string or
 // NULL if some other token is found instead.
 char *ADLParser::get_ident_common(bool do_preproc) {
-  register char c;
+  char c;
   char *start;                    // Pointer to start of token
   char *end;                      // Pointer to end of token
 
@@ -4762,7 +4762,7 @@
 // invokes a parse_err if the next token is not an integer.
 // This routine does not leave the integer null-terminated.
 int ADLParser::get_int(void) {
-  register char c;
+  char          c;
   char         *start;            // Pointer to start of token
   char         *end;              // Pointer to end of token
   int           result;           // Storage for integer result