Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 2 additions & 6 deletions src/hotspot/share/oops/inlineKlass.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -427,11 +427,7 @@ oop InlineKlass::realloc_result(const RegisterMap& reg_map, const GrowableArray<
break;
}
case T_LONG: {
#ifdef _LP64
new_vt->double_field_put(off, *(jdouble*)loc);
#else
Unimplemented();
#endif
new_vt->long_field_put(off, *(jlong*)loc);
break;
}
case T_OBJECT:
Expand All @@ -441,7 +437,7 @@ oop InlineKlass::realloc_result(const RegisterMap& reg_map, const GrowableArray<
break;
}
case T_FLOAT: {
new_vt->float_field_put(off, *(jfloat*)loc);
new_vt->float_field_put(off, *(jfloat*)loc);
break;
}
case T_DOUBLE: {
Expand Down