comparison src/share/vm/jvmci/jvmciRuntime.cpp @ 22507:693e1df2b808

Add spaces around format macros
author Tom Rodriguez <tom.rodriguez@oracle.com>
date Wed, 02 Sep 2015 10:13:06 -0700
parents d113a94d4fdd
children df5a7841f92a
comparison
equal deleted inserted replaced
22506:363cba9482db 22507:693e1df2b808
496 JRT_END 496 JRT_END
497 497
498 JRT_LEAF(jboolean, JVMCIRuntime::validate_object(JavaThread* thread, oopDesc* parent, oopDesc* child)) 498 JRT_LEAF(jboolean, JVMCIRuntime::validate_object(JavaThread* thread, oopDesc* parent, oopDesc* child))
499 bool ret = true; 499 bool ret = true;
500 if(!Universe::heap()->is_in_closed_subset(parent)) { 500 if(!Universe::heap()->is_in_closed_subset(parent)) {
501 tty->print_cr("Parent Object "INTPTR_FORMAT" not in heap", p2i(parent)); 501 tty->print_cr("Parent Object " INTPTR_FORMAT " not in heap", p2i(parent));
502 parent->print(); 502 parent->print();
503 ret=false; 503 ret=false;
504 } 504 }
505 if(!Universe::heap()->is_in_closed_subset(child)) { 505 if(!Universe::heap()->is_in_closed_subset(child)) {
506 tty->print_cr("Child Object "INTPTR_FORMAT" not in heap", p2i(child)); 506 tty->print_cr("Child Object " INTPTR_FORMAT " not in heap", p2i(child));
507 child->print(); 507 child->print();
508 ret=false; 508 ret=false;
509 } 509 }
510 return (jint)ret; 510 return (jint)ret;
511 JRT_END 511 JRT_END