mirror of
https://github.com/openjdk/jdk.git
synced 2025-08-27 06:45:07 +02:00
6843629: Make current hotspot build part of jdk5 control build
Source changes for older compilers plus makefile changes. Reviewed-by: xlu
This commit is contained in:
parent
ab3b12bdbd
commit
ce423c9e98
28 changed files with 162 additions and 103 deletions
|
@ -1528,19 +1528,23 @@ void DepChange::print() {
|
|||
int nsup = 0, nint = 0;
|
||||
for (ContextStream str(*this); str.next(); ) {
|
||||
klassOop k = str.klass();
|
||||
switch (str._change_type) {
|
||||
switch (str.change_type()) {
|
||||
case Change_new_type:
|
||||
tty->print_cr(" dependee = %s", instanceKlass::cast(k)->external_name());
|
||||
break;
|
||||
case Change_new_sub:
|
||||
if (!WizardMode)
|
||||
++nsup;
|
||||
else tty->print_cr(" context super = %s", instanceKlass::cast(k)->external_name());
|
||||
if (!WizardMode) {
|
||||
++nsup;
|
||||
} else {
|
||||
tty->print_cr(" context super = %s", instanceKlass::cast(k)->external_name());
|
||||
}
|
||||
break;
|
||||
case Change_new_impl:
|
||||
if (!WizardMode)
|
||||
++nint;
|
||||
else tty->print_cr(" context interface = %s", instanceKlass::cast(k)->external_name());
|
||||
if (!WizardMode) {
|
||||
++nint;
|
||||
} else {
|
||||
tty->print_cr(" context interface = %s", instanceKlass::cast(k)->external_name());
|
||||
}
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue