changeset 6427:7d6f44854ee3

re-conditionalized tracing statement
author Doug Simon <doug.simon@oracle.com>
date Mon, 24 Sep 2012 11:00:35 +0200
parents 7373a6dcdb16
children 6278ac5829ce 5d092bd11278
files src/share/vm/c1/c1_Runtime1.cpp
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/src/share/vm/c1/c1_Runtime1.cpp	Fri Sep 21 11:56:13 2012 +0200
+++ b/src/share/vm/c1/c1_Runtime1.cpp	Mon Sep 24 11:00:35 2012 +0200
@@ -746,7 +746,7 @@
     ObjectSynchronizer::fast_exit(obj, lock, THREAD);
   }
 #ifdef ASSERT
-  if (TraceGraal >= 3 || true) {
+  if (TraceGraal >= 3) {
     char type[1024];
     obj->klass()->klass_part()->name()->as_C_string(type, 1024);
     tty->print_cr("exited locking slow case with obj=" INTPTR_FORMAT ", type=%s, mark=" INTPTR_FORMAT ", lock=" INTPTR_FORMAT, obj, type, obj->mark(), lock);