src/share/vm/memory/dump.cpp

changeset 1149
981375ca07b7
parent 1145
e5b0439ef4ae
child 1577
4ce7240d622c
     1.1 --- a/src/share/vm/memory/dump.cpp	Wed Apr 15 21:31:46 2009 -0700
     1.2 +++ b/src/share/vm/memory/dump.cpp	Fri Apr 17 12:22:18 2009 -0700
     1.3 @@ -929,7 +929,8 @@
     1.4      guarantee(SystemDictionary::constraints()->number_of_entries() == 0,
     1.5                "loader constraints are not saved");
     1.6      // Revisit and implement this if we prelink method handle call sites:
     1.7 -    guarantee(SystemDictionary::invoke_method_table()->number_of_entries() == 0,
     1.8 +    guarantee(SystemDictionary::invoke_method_table() == NULL ||
     1.9 +              SystemDictionary::invoke_method_table()->number_of_entries() == 0,
    1.10                "invoke method table is not saved");
    1.11      GenCollectedHeap* gch = GenCollectedHeap::heap();
    1.12  

mercurial