hotspot/src/share/vm/oops/instanceKlass.cpp
changeset 5403 6b0dd9c75dde
parent 5089 0cce506a0158
child 5547 f4b087cbb361
--- a/hotspot/src/share/vm/oops/instanceKlass.cpp	Sun Oct 11 16:19:25 2009 -0700
+++ b/hotspot/src/share/vm/oops/instanceKlass.cpp	Thu Apr 22 13:23:15 2010 -0700
@@ -966,7 +966,7 @@
       // not found
 #ifdef ASSERT
       int index = linear_search(methods, name, signature);
-      if (index != -1) fatal1("binary search bug: should have found entry %d", index);
+      assert(index == -1, err_msg("binary search should have found entry %d", index));
 #endif
       return NULL;
     } else if (res < 0) {
@@ -977,7 +977,7 @@
   }
 #ifdef ASSERT
   int index = linear_search(methods, name, signature);
-  if (index != -1) fatal1("binary search bug: should have found entry %d", index);
+  assert(index == -1, err_msg("binary search should have found entry %d", index));
 #endif
   return NULL;
 }