< prev index next >

src/hotspot/share/compiler/abstractDisassembler.cpp

Print this page
rev 55008 : 8224652: 32-bit build failures after JDK-8213084
Contributed-by: shade@redhat.com
Reviewed-by: thartmann

*** 211,221 **** st->fill_to(align += 2*tsize); case 8: if (print_header) { st->print(" long"); } else { if (((uintptr_t)(here)&0x07) == 0) { ! st->print("%23.1ld", *((jlong*)here)); } } st->fill_to(align += 3*tsize); break; default: ; --- 211,221 ---- st->fill_to(align += 2*tsize); case 8: if (print_header) { st->print(" long"); } else { if (((uintptr_t)(here)&0x07) == 0) { ! st->print(JLONG_FORMAT_W(23), *((jlong*)here)); } } st->fill_to(align += 3*tsize); break; default: ;
< prev index next >