hotspot/src/share/vm/code/pcDesc.cpp
changeset 4893 fedc27b54caa
parent 3686 69c1b5228547
child 5547 f4b087cbb361
--- a/hotspot/src/share/vm/code/pcDesc.cpp	Sun Feb 07 12:15:06 2010 -0800
+++ b/hotspot/src/share/vm/code/pcDesc.cpp	Mon Feb 08 12:20:09 2010 -0800
@@ -1,5 +1,5 @@
 /*
- * Copyright 1997-2009 Sun Microsystems, Inc.  All Rights Reserved.
+ * Copyright 1997-2010 Sun Microsystems, Inc.  All Rights Reserved.
  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
  *
  * This code is free software; you can redistribute it and/or modify it
@@ -52,7 +52,8 @@
     tty->print("  ");
     sd->method()->print_short_name(tty);
     tty->print("  @%d", sd->bci());
-    tty->print("  reexecute=%s", sd->should_reexecute()?"true":"false");
+    if (sd->should_reexecute())
+      tty->print("  reexecute=true");
     tty->cr();
   }
 #endif