hotspot/src/share/vm/ci/ciField.cpp
changeset 12984 8fc2453a8ec4
parent 12982 7d7a3e02610e
child 13728 882756847a04
equal deleted inserted replaced
12983:c314338bc3da 12984:8fc2453a8ec4
   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