diff src/share/vm/runtime/thread.cpp @ 10186:b06ac540229e

8013132: Add a flag to turn off the output of the verbose verification code Reviewed-by: johnc, brutisso
author stefank
date Wed, 24 Apr 2013 20:13:37 +0200
parents 68fe50d4f1d5
children caac22686b17
line wrap: on
line diff
--- a/src/share/vm/runtime/thread.cpp	Wed Apr 24 14:48:43 2013 -0700
+++ b/src/share/vm/runtime/thread.cpp	Wed Apr 24 20:13:37 2013 +0200
@@ -3447,7 +3447,8 @@
 
   assert (Universe::is_fully_initialized(), "not initialized");
   if (VerifyDuringStartup) {
-    VM_Verify verify_op(false /* silent */);   // make sure we're starting with a clean slate
+    // Make sure we're starting with a clean slate.
+    VM_Verify verify_op;
     VMThread::execute(&verify_op);
   }