--- old/src/share/vm/oops/method.cpp 2015-12-04 17:51:24.864827719 -0500 +++ new/src/share/vm/oops/method.cpp 2015-12-04 17:51:24.070950888 -0500 @@ -2174,6 +2174,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 {