src/share/vm/ci/ciMethod.cpp

changeset 462
1f530c629c7d
parent 435
a61af66fc99e
child 617
44abbb0d4c18
     1.1 --- a/src/share/vm/ci/ciMethod.cpp	Thu Feb 21 14:03:41 2008 -0800
     1.2 +++ b/src/share/vm/ci/ciMethod.cpp	Thu Feb 21 19:03:44 2008 -0800
     1.3 @@ -146,7 +146,7 @@
     1.4    memcpy(_code, me->code_base(), code_size());
     1.5  
     1.6    // Revert any breakpoint bytecodes in ci's copy
     1.7 -  if (_is_compilable && me->number_of_breakpoints() > 0) {
     1.8 +  if (me->number_of_breakpoints() > 0) {
     1.9      BreakpointInfo* bp = instanceKlass::cast(me->method_holder())->breakpoints();
    1.10      for (; bp != NULL; bp = bp->next()) {
    1.11        if (bp->match(me)) {

mercurial