< prev index next >

src/hotspot/share/adlc/main.cpp

Print this page
rev 50962 : [mq]: 8207011

@@ -56,11 +56,11 @@
   // Check for proper arguments
   if( argc == 1 ) usage(AD);    // No arguments?  Then print usage
 
   // Read command line arguments and file names
   for( int i = 1; i < argc; i++ ) { // For all arguments
-    register char *s = argv[i]; // Get option/filename
+    char *s = argv[i];          // Get option/filename
 
     if( *s++ == '-' ) {         // It's a flag? (not a filename)
       if( !*s ) {               // Stand-alone `-' means stdin
         //********** INSERT CODE HERE **********
       } else while (*s != '\0') { // While have flags on option
< prev index next >