comparison src/share/vm/ci/ciField.cpp @ 6153:aa07e41a9f80

7160677: missing else in fix for 7152811 Reviewed-by: kvn, kevinw
author never
date Thu, 12 Apr 2012 12:07:09 -0700
parents e778c29768e6
children 957c266d8bc5 da91efe96a93
comparison
equal deleted inserted replaced
6152:958bb4b7be49 6153:aa07e41a9f80
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