diff src/share/vm/runtime/sharedRuntime.cpp @ 1564:61b2245abf36

6930772: JSR 292 needs to support SPARC C1 Summary: C1 for SPARC needs to support JSR 292. Reviewed-by: never, jrose
author twisti
date Fri, 21 May 2010 02:59:24 -0700
parents 1a5913bf5e19
children e9ff18c4ace7
line wrap: on
line diff
--- a/src/share/vm/runtime/sharedRuntime.cpp	Thu May 20 06:34:23 2010 -0700
+++ b/src/share/vm/runtime/sharedRuntime.cpp	Fri May 21 02:59:24 2010 -0700
@@ -2055,11 +2055,11 @@
   void scan() {
     while (_index < _table->table_size()) {
       AdapterHandlerEntry* a = _table->bucket(_index);
+      _index++;
       if (a != NULL) {
         _current = a;
         return;
       }
-      _index++;
     }
   }