diff -r efdbe9b904ad -r f96fcd9e1e1b src/share/vm/opto/callnode.cpp --- a/src/share/vm/opto/callnode.cpp Tue Feb 23 18:58:36 2016 -0500 +++ b/src/share/vm/opto/callnode.cpp Thu Jun 14 09:15:08 2018 -0700 @@ -340,7 +340,7 @@ const Type *t = n->bottom_type(); switch (t->base()) { case Type::Int: - st->print(" %s%d]=#"INT32_FORMAT,msg,i,t->is_int()->get_con()); + st->print(" %s%d]=#" INT32_FORMAT,msg,i,t->is_int()->get_con()); break; case Type::AnyPtr: assert( t == TypePtr::NULL_PTR || n->in_dump(), "" ); @@ -369,7 +369,7 @@ st->print(" %s%d]=#%fF",msg,i,t->is_float_constant()->_f); break; case Type::Long: - st->print(" %s%d]=#"INT64_FORMAT,msg,i,(int64_t)(t->is_long()->get_con())); + st->print(" %s%d]=#" INT64_FORMAT,msg,i,(int64_t)(t->is_long()->get_con())); break; case Type::Half: case Type::Top: