src/share/vm/code/pcDesc.cpp

changeset 1687
f516d5d7a019
parent 1366
72088be4b386
child 1907
c18cbe5936b8
     1.1 --- a/src/share/vm/code/pcDesc.cpp	Sun Feb 07 12:15:06 2010 -0800
     1.2 +++ b/src/share/vm/code/pcDesc.cpp	Mon Feb 08 12:20:09 2010 -0800
     1.3 @@ -1,5 +1,5 @@
     1.4  /*
     1.5 - * Copyright 1997-2009 Sun Microsystems, Inc.  All Rights Reserved.
     1.6 + * Copyright 1997-2010 Sun Microsystems, Inc.  All Rights Reserved.
     1.7   * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
     1.8   *
     1.9   * This code is free software; you can redistribute it and/or modify it
    1.10 @@ -52,7 +52,8 @@
    1.11      tty->print("  ");
    1.12      sd->method()->print_short_name(tty);
    1.13      tty->print("  @%d", sd->bci());
    1.14 -    tty->print("  reexecute=%s", sd->should_reexecute()?"true":"false");
    1.15 +    if (sd->should_reexecute())
    1.16 +      tty->print("  reexecute=true");
    1.17      tty->cr();
    1.18    }
    1.19  #endif

mercurial