Commit b05467dc by Zack Weinberg Committed by Zack Weinberg

function.c (fixup_var_refs): Use push_to_full_sequence where possible.

	* function.c (fixup_var_refs): Use push_to_full_sequence where
	possible.

From-SVN: r38729
parent b883f801
2001-01-05 Zack Weinberg <zack@wolery.stanford.edu>
* function.c (fixup_var_refs): Use push_to_full_sequence where
possible.
2001-01-05 Michael Meissner <meissner@redhat.com> 2001-01-05 Michael Meissner <meissner@redhat.com>
* flags.h (flag_reorder_blocks): Add declaration. * flags.h (flag_reorder_blocks): Add declaration.
......
...@@ -1558,7 +1558,7 @@ fixup_var_refs (var, promoted_mode, unsignedp, ht) ...@@ -1558,7 +1558,7 @@ fixup_var_refs (var, promoted_mode, unsignedp, ht)
/* Scan all pending sequences too. */ /* Scan all pending sequences too. */
for (; stack; stack = stack->next) for (; stack; stack = stack->next)
{ {
push_to_sequence (stack->first); push_to_full_sequence (stack->first, stack->last);
fixup_var_refs_insns (var, promoted_mode, unsignedp, fixup_var_refs_insns (var, promoted_mode, unsignedp,
stack->first, stack->next != 0, 0); stack->first, stack->next != 0, 0);
/* Update remembered end of sequence /* Update remembered end of sequence
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment