hotspot/src/share/vm/runtime/vm_operations.hpp
changeset 16680 960505df90e7
parent 15926 8e87d545195f
child 17112 e49af4ba7755
--- a/hotspot/src/share/vm/runtime/vm_operations.hpp	Thu Apr 04 21:15:43 2013 -0700
+++ b/hotspot/src/share/vm/runtime/vm_operations.hpp	Fri Apr 05 10:20:04 2013 -0700
@@ -300,9 +300,9 @@
 
 class VM_Verify: public VM_Operation {
  private:
-  KlassHandle _dependee;
+  bool _silent;
  public:
-  VM_Verify() {}
+  VM_Verify(bool silent) : _silent(silent) {}
   VMOp_Type type() const { return VMOp_Verify; }
   void doit();
 };