equal
deleted
inserted
replaced
336 bool is_put = (bc == Bytecodes::_putfield || bc == Bytecodes::_putstatic); |
336 bool is_put = (bc == Bytecodes::_putfield || bc == Bytecodes::_putstatic); |
337 if (is_put) { |
337 if (is_put) { |
338 if (_known_to_link_with_put == accessing_klass) { |
338 if (_known_to_link_with_put == accessing_klass) { |
339 return true; |
339 return true; |
340 } |
340 } |
|
341 } else { |
341 if (_known_to_link_with_get == accessing_klass) { |
342 if (_known_to_link_with_get == accessing_klass) { |
342 return true; |
343 return true; |
343 } |
344 } |
344 } |
345 } |
345 |
346 |