don't throw away pseudo's, even if they are not reachable

This commit is contained in:
ceriel 1990-08-02 16:01:21 +00:00
parent 116b6a00bc
commit 257c868cc7

View file

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