--- old/src/share/vm/oops/method.cpp 2016-01-07 12:05:38.178096344 -0500 +++ new/src/share/vm/oops/method.cpp 2016-01-07 12:05:37.994641451 -0500 @@ -2207,6 +2207,15 @@ } } +void Method::print_linkage_flags(outputStream* st) { + access_flags().print_on(st); + if (is_default_method()) { + st->print("default "); + } + if (is_overpass()) { + st->print("overpass "); + } +} #endif //PRODUCT void Method::print_value_on(outputStream* st) const {