mirror of
https://github.com/openjdk/jdk.git
synced 2025-09-21 11:34:38 +02:00
8259049: Uninitialized variable after JDK-8257513
Reviewed-by: kvn, thartmann
This commit is contained in:
parent
db6f39302b
commit
9f1516492c
1 changed files with 1 additions and 1 deletions
|
@ -150,7 +150,7 @@ bool ConstantTable::emit(CodeBuffer& cb) const {
|
||||||
"must be: %d == %d", (int)(constant_addr - _masm.code()->consts()->start()), (int)(con.offset()));
|
"must be: %d == %d", (int)(constant_addr - _masm.code()->consts()->start()), (int)(con.offset()));
|
||||||
|
|
||||||
// Expand jump-table
|
// Expand jump-table
|
||||||
address last_addr;
|
address last_addr = NULL;
|
||||||
for (uint j = 1; j < n->outcnt(); j++) {
|
for (uint j = 1; j < n->outcnt(); j++) {
|
||||||
last_addr = _masm.address_constant(dummy + j);
|
last_addr = _masm.address_constant(dummy + j);
|
||||||
if (last_addr == NULL) {
|
if (last_addr == NULL) {
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue