hotspot/src/share/vm/ci/ciStreams.cpp
changeset 39421 a9652c919db8
parent 38309 9b8e9c373740
equal deleted inserted replaced
39420:987528901b83 39421:a9652c919db8
   276 //
   276 //
   277 // If this bytecode is one of get_field, get_static, put_field,
   277 // If this bytecode is one of get_field, get_static, put_field,
   278 // or put_static, get the referenced field.
   278 // or put_static, get the referenced field.
   279 ciField* ciBytecodeStream::get_field(bool& will_link) {
   279 ciField* ciBytecodeStream::get_field(bool& will_link) {
   280   ciField* f = CURRENT_ENV->get_field_by_index(_holder, get_field_index());
   280   ciField* f = CURRENT_ENV->get_field_by_index(_holder, get_field_index());
   281   will_link = f->will_link(_holder, _bc);
   281   will_link = f->will_link(_method, _bc);
   282   return f;
   282   return f;
   283 }
   283 }
   284 
   284 
   285 
   285 
   286 // ------------------------------------------------------------------
   286 // ------------------------------------------------------------------