src/share/vm/ci/ciStreams.cpp
Index Unified diffs Context diffs Sdiffs Patch New Old Previous File Next File 8073191-work Cdiff src/share/vm/ci/ciStreams.cpp

src/share/vm/ci/ciStreams.cpp

Print this page

        

*** 276,286 **** // // If this bytecode is one of get_field, get_static, put_field, // or put_static, get the referenced field. ciField* ciBytecodeStream::get_field(bool& will_link) { ciField* f = CURRENT_ENV->get_field_by_index(_holder, get_field_index()); ! will_link = f->will_link(_holder, _bc); return f; } // ------------------------------------------------------------------ --- 276,286 ---- // // If this bytecode is one of get_field, get_static, put_field, // or put_static, get the referenced field. ciField* ciBytecodeStream::get_field(bool& will_link) { ciField* f = CURRENT_ENV->get_field_by_index(_holder, get_field_index()); ! will_link = f->will_link(_holder, _method, _bc); return f; } // ------------------------------------------------------------------
src/share/vm/ci/ciStreams.cpp
Index Unified diffs Context diffs Sdiffs Patch New Old Previous File Next File