don't throw away pseudo's, even if they are not reachable
This commit is contained in:
parent
116b6a00bc
commit
257c868cc7
1 changed files with 5 additions and 0 deletions
|
@ -121,6 +121,11 @@ cleaninstrs() {
|
|||
if (instr == op_lab) {
|
||||
lp->l_a.la_np->n_line = 0;
|
||||
}
|
||||
else if (instr > sp_lmnem) {
|
||||
/* leave pseudo's */
|
||||
lpp = &lp->l_next;
|
||||
continue;
|
||||
}
|
||||
lp = lp->l_next;
|
||||
oldline(*lpp);
|
||||
OPTIM(O_UNREACH);
|
||||
|
|
Loading…
Reference in a new issue