src/share/vm/interpreter/templateInterpreter.cpp
Index Unified diffs Context diffs Sdiffs Patch New Old Previous File Next File hotspot Cdiff src/share/vm/interpreter/templateInterpreter.cpp

src/share/vm/interpreter/templateInterpreter.cpp

Print this page

        

*** 102,112 **** void EntryPoint::print() { tty->print("["); for (int i = 0; i < number_of_states; i++) { if (i > 0) tty->print(", "); ! tty->print(INTPTR_FORMAT, _entry[i]); } tty->print("]"); } --- 102,112 ---- void EntryPoint::print() { tty->print("["); for (int i = 0; i < number_of_states; i++) { if (i > 0) tty->print(", "); ! tty->print(INTPTR_FORMAT, p2i(_entry[i])); } tty->print("]"); }
src/share/vm/interpreter/templateInterpreter.cpp
Index Unified diffs Context diffs Sdiffs Patch New Old Previous File Next File