6888953: some calls to function-like macros are missing semicolons

Reviewed-by: pbk, kvn
This commit is contained in:
John Coomes 2009-10-11 16:19:25 -07:00
parent 83f1d02a67
commit 7e76feaf42
31 changed files with 36 additions and 35 deletions

View file

@ -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