hotspot/src/share/vm/code/dependencies.cpp
changeset 30195 fff35af9b018
parent 29081 c61eb4914428
child 30296 95baefac8485
--- a/hotspot/src/share/vm/code/dependencies.cpp	Sat Mar 21 21:47:49 2015 +0300
+++ b/hotspot/src/share/vm/code/dependencies.cpp	Thu Mar 12 14:15:09 2015 +0100
@@ -845,7 +845,13 @@
     assert((uint)n <= (uint)_num_participants, "oob");
     Method* fm = _found_methods[n];
     assert(n == _num_participants || fm != NULL, "proper usage");
-    assert(fm == NULL || fm->method_holder() == _participants[n], "sanity");
+    if (fm != NULL && fm->method_holder() != _participants[n]) {
+      // Default methods from interfaces can be added to classes. In
+      // that case the holder of the method is not the class but the
+      // interface where it's defined.
+      assert(fm->is_default_method(), "sanity");
+      return NULL;
+    }
     return fm;
   }