mirror of
https://github.com/openjdk/jdk.git
synced 2025-08-26 14:24:46 +02:00
8139040: Fix initializations before ShouldNotReachHere() etc. and enable -Wuninitialized on linux
Reviewed-by: stuefe, coleenp, roland
This commit is contained in:
parent
f21d1afd70
commit
83b3b21342
40 changed files with 129 additions and 124 deletions
|
@ -562,7 +562,7 @@ void TemplateInterpreterGenerator::generate_and_dispatch(Template* t, TosState t
|
|||
if (StopInterpreterAt > 0) stop_interpreter_at();
|
||||
__ verify_FPU(1, t->tos_in());
|
||||
#endif // !PRODUCT
|
||||
int step;
|
||||
int step = 0;
|
||||
if (!t->does_dispatch()) {
|
||||
step = t->is_wide() ? Bytecodes::wide_length_for(t->bytecode()) : Bytecodes::length_for(t->bytecode());
|
||||
if (tos_out == ilgl) tos_out = t->tos_out();
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue