mirror of
https://github.com/openjdk/jdk.git
synced 2025-08-27 14:54:52 +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
|
@ -3823,8 +3823,8 @@ bool GraphBuilder::try_inline_full(ciMethod* callee, bool holder_known, Bytecode
|
|||
caller_state->truncate_stack(args_base);
|
||||
assert(callee_state->stack_size() == 0, "callee stack must be empty");
|
||||
|
||||
Value lock;
|
||||
BlockBegin* sync_handler;
|
||||
Value lock = NULL;
|
||||
BlockBegin* sync_handler = NULL;
|
||||
|
||||
// Inline the locking of the receiver if the callee is synchronized
|
||||
if (callee->is_synchronized()) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue