hotspot/src/share/vm/ci/ciMethod.cpp
changeset 200 88d83617f912
parent 1 489c9b5090e2
child 608 fe8c5fbbc54e
--- a/hotspot/src/share/vm/ci/ciMethod.cpp	Thu Feb 21 14:03:41 2008 -0800
+++ b/hotspot/src/share/vm/ci/ciMethod.cpp	Thu Feb 21 19:03:44 2008 -0800
@@ -146,7 +146,7 @@
   memcpy(_code, me->code_base(), code_size());
 
   // Revert any breakpoint bytecodes in ci's copy
-  if (_is_compilable && me->number_of_breakpoints() > 0) {
+  if (me->number_of_breakpoints() > 0) {
     BreakpointInfo* bp = instanceKlass::cast(me->method_holder())->breakpoints();
     for (; bp != NULL; bp = bp->next()) {
       if (bp->match(me)) {