4718400: Many quantities are held as signed that should be unsigned

Reviewed-by: coleenp, rbackman, dholmes
This commit is contained in:
Stefan Karlsson 2021-10-27 13:23:24 +00:00
parent 168081efc8
commit 93be099ccb
52 changed files with 95 additions and 110 deletions

View file

@ -201,7 +201,7 @@ static void print_objects(JavaThread* deoptee_thread,
if (obj.is_null()) {
st.print(" allocation failed");
} else {
st.print(" allocated (%d bytes)", obj->size() * HeapWordSize);
st.print(" allocated (" SIZE_FORMAT " bytes)", obj->size() * HeapWordSize);
}
st.cr();