< prev index next >

src/hotspot/share/adlc/adlparse.cpp

Print this page
rev 50962 : [mq]: 8207011

@@ -4562,11 +4562,11 @@
 //------------------------------get_ident_common-------------------------------
 // Looks for an identifier in the buffer, and turns it into a null terminated
 // 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
 
   if( _curline == NULL )          // Return NULL at EOF.
     return NULL;

@@ -4760,11 +4760,11 @@
 //------------------------------get_int----------------------------------------
 // Looks for a character string integer in the buffer, and turns it into an int
 // 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
 
   if( _curline == NULL )          // Return NULL at EOF.
< prev index next >