mirror of
https://github.com/openjdk/jdk.git
synced 2025-08-26 22:34:27 +02:00
6895168: JCK api/signaturetest/sigtest.basic.html#basic test fails for jdk 5.0 with HS 16 in nightly build
Reviewed-by: dholmes, acorn, jrose
This commit is contained in:
parent
ad61b86753
commit
f42d7fcedb
3 changed files with 18 additions and 19 deletions
|
@ -337,12 +337,12 @@ class instanceKlass: public Klass {
|
|||
static bool is_same_class_package(oop class_loader1, symbolOop class_name1, oop class_loader2, symbolOop class_name2);
|
||||
|
||||
// find an enclosing class (defined where original code was, in jvm.cpp!)
|
||||
klassOop compute_enclosing_class(symbolOop& simple_name_result, TRAPS) {
|
||||
klassOop compute_enclosing_class(bool* inner_is_member, TRAPS) {
|
||||
instanceKlassHandle self(THREAD, this->as_klassOop());
|
||||
return compute_enclosing_class_impl(self, simple_name_result, THREAD);
|
||||
return compute_enclosing_class_impl(self, inner_is_member, THREAD);
|
||||
}
|
||||
static klassOop compute_enclosing_class_impl(instanceKlassHandle self,
|
||||
symbolOop& simple_name_result, TRAPS);
|
||||
bool* inner_is_member, TRAPS);
|
||||
|
||||
// tell if two classes have the same enclosing class (at package level)
|
||||
bool is_same_package_member(klassOop class2, TRAPS) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue