src/share/vm/opto/type.cpp
Index Unified diffs Context diffs Sdiffs Patch New Old Previous File Next File valhalla-experimental Cdiff src/share/vm/opto/type.cpp

src/share/vm/opto/type.cpp

Print this page

        

*** 2208,2220 **** } //------------------------------dump2------------------------------------------ #ifndef PRODUCT void TypeValueType::dump2(Dict &d, uint depth, outputStream* st) const { ! st->print("valuetype[%d]:{", _vk->param_count()); st->print("%s", _vk->get_field_type_by_index(0)->name()); ! for (int i = 1; i < _vk->param_count(); ++i) { st->print(", %s", _vk->get_field_type_by_index(i)->name()); } st->print("}"); } #endif --- 2208,2220 ---- } //------------------------------dump2------------------------------------------ #ifndef PRODUCT void TypeValueType::dump2(Dict &d, uint depth, outputStream* st) const { ! st->print("valuetype[%d]:{", _vk->nof_declared_nonstatic_fields()); st->print("%s", _vk->get_field_type_by_index(0)->name()); ! for (int i = 1; i < _vk->nof_declared_nonstatic_fields(); ++i) { st->print(", %s", _vk->get_field_type_by_index(i)->name()); } st->print("}"); } #endif
src/share/vm/opto/type.cpp
Index Unified diffs Context diffs Sdiffs Patch New Old Previous File Next File