* rtlanal.c (remove_node_from_expr_list): Correctly update PREV.
From-SVN: r39541
This commit is contained in:
parent
bd0d5d4a5e
commit
dd248abd80
@ -1,3 +1,7 @@
|
|||||||
|
Thu Feb 8 11:21:28 2001 Richard Kenner <kenner@vlsi1.ultra.nyu.edu>
|
||||||
|
|
||||||
|
* rtlanal.c (remove_node_from_expr_list): Correctly update PREV.
|
||||||
|
|
||||||
2001-02-08 Bernd Schmidt <bernds@redhat.com>
|
2001-02-08 Bernd Schmidt <bernds@redhat.com>
|
||||||
|
|
||||||
* final.c (cleanup_subreg_operands): The address of a MEM can
|
* final.c (cleanup_subreg_operands): The address of a MEM can
|
||||||
|
@ -1596,11 +1596,10 @@ remove_note (insn, note)
|
|||||||
abort ();
|
abort ();
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Search LISTP (an EXPR_LIST) for NODE and remove NODE from the list
|
/* Search LISTP (an EXPR_LIST) for an entry whose first operand is NODE and
|
||||||
if it is found.
|
remove that entry from the list if it is found.
|
||||||
|
|
||||||
A simple equality test is used to determine if NODE is on the
|
A simple equality test is used to determine if NODE matches. */
|
||||||
EXPR_LIST. */
|
|
||||||
|
|
||||||
void
|
void
|
||||||
remove_node_from_expr_list (node, listp)
|
remove_node_from_expr_list (node, listp)
|
||||||
@ -1622,6 +1621,8 @@ remove_node_from_expr_list (node, listp)
|
|||||||
|
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
prev = temp;
|
||||||
temp = XEXP (temp, 1);
|
temp = XEXP (temp, 1);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user