提交 05645ee1 编写于 作者: B bulasevich

8227632: Incorrect PrintCompilation message: made not compilable on levels 0 1 2 3 4

Summary: Fixing the message to print actual comp_level
Reviewed-by: dlong, kvn
上级 7938ac4d
......@@ -819,10 +819,7 @@ void Method::print_made_not_compilable(int comp_level, bool is_osr, bool report,
if (comp_level == CompLevel_all) {
tty->print("all levels ");
} else {
tty->print("levels ");
for (int i = (int)CompLevel_none; i <= comp_level; i++) {
tty->print("%d ", i);
}
tty->print("level %d ", comp_level);
}
this->print_short_name(tty);
int size = this->code_size();
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册