diff src/share/vm/runtime/vm_operations.hpp @ 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 f2110083203d
line wrap: on
line diff
--- a/src/share/vm/runtime/vm_operations.hpp	Wed Apr 24 14:48:43 2013 -0700
+++ b/src/share/vm/runtime/vm_operations.hpp	Wed Apr 24 20:13:37 2013 +0200
@@ -302,7 +302,7 @@
  private:
   bool _silent;
  public:
-  VM_Verify(bool silent) : _silent(silent) {}
+  VM_Verify(bool silent = VerifySilently) : _silent(silent) {}
   VMOp_Type type() const { return VMOp_Verify; }
   void doit();
 };