diff -r 2ae445f57ac6 -r 5eecc37ceb93 hotspot/src/share/vm/c1/c1_GraphBuilder.cpp --- a/hotspot/src/share/vm/c1/c1_GraphBuilder.cpp Wed Oct 30 13:14:09 2013 +0100 +++ b/hotspot/src/share/vm/c1/c1_GraphBuilder.cpp Wed Oct 30 22:55:11 2013 -0700 @@ -1873,7 +1873,7 @@ // number of implementors for decl_interface is 0 or 1. If // it's 0 then no class implements decl_interface and there's // no point in inlining. - if (!holder->is_loaded() || decl_interface->nof_implementors() != 1) { + if (!holder->is_loaded() || decl_interface->nof_implementors() != 1 || decl_interface->has_default_methods()) { singleton = NULL; } }