--- old/src/share/vm/ci/ciInstanceKlass.hpp 2016-09-28 23:20:45.605082122 -0400 +++ new/src/share/vm/ci/ciInstanceKlass.hpp 2016-09-28 23:20:43.504963216 -0400 @@ -1,5 +1,5 @@ /* - * Copyright (c) 1999, 2015, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 1999, 2016, Oracle and/or its affiliates. All rights reserved. * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * * This code is free software; you can redistribute it and/or modify it @@ -52,7 +52,7 @@ bool _has_finalizer; bool _has_subklass; bool _has_nonstatic_fields; - bool _has_default_methods; + bool _has_nonstatic_concrete_methods; bool _is_anonymous; ciFlags _flags; @@ -174,9 +174,9 @@ return 2; } } - bool has_default_methods() { + bool has_nonstatic_concrete_methods() { assert(is_loaded(), "must be loaded"); - return _has_default_methods; + return _has_nonstatic_concrete_methods; } bool is_anonymous() {