mirror of
https://github.com/openjdk/jdk.git
synced 2025-09-21 03:24:38 +02:00
6888953: some calls to function-like macros are missing semicolons
Reviewed-by: pbk, kvn
This commit is contained in:
parent
83f1d02a67
commit
7e76feaf42
31 changed files with 36 additions and 35 deletions
|
@ -1188,7 +1188,7 @@ static void kill_dead_code( Node *dead, PhaseIterGVN *igvn ) {
|
|||
Node* use = dead->last_out(k);
|
||||
igvn->hash_delete(use); // Yank from hash table prior to mod
|
||||
if (use->in(0) == dead) { // Found another dead node
|
||||
assert (!use->is_Con(), "Control for Con node should be Root node.")
|
||||
assert (!use->is_Con(), "Control for Con node should be Root node.");
|
||||
use->set_req(0, top); // Cut dead edge to prevent processing
|
||||
nstack.push(use); // the dead node again.
|
||||
} else { // Else found a not-dead user
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue