Commit 16e99e29 by Andreas Jaeger

flow.c (clear_log_links): Remove unused variable.


	* flow.c (clear_log_links): Remove unused variable.
	* cfgcleanup.c (cleanup_cfg): Likewise.

From-SVN: r46537
parent 350ebd54
2001-10-26 Andreas Jaeger <aj@suse.de>
* flow.c (clear_log_links): Remove unused variable.
* cfgcleanup.c (cleanup_cfg): Likewise.
2001-10-26 Alexandre Oliva <aoliva@redhat.com>
* tree-inline.c (remap_decl): Don't copy size and size_unit here.
......
......@@ -1302,7 +1302,6 @@ bool
cleanup_cfg (mode)
int mode;
{
int i;
bool changed = false;
timevar_push (TV_CLEANUP_CFG);
......
......@@ -4110,7 +4110,6 @@ clear_log_links (blocks)
if (!blocks)
{
rtx insn;
for (insn = get_insns (); insn; insn = NEXT_INSN (insn))
if (INSN_P (insn))
free_INSN_LIST_list (&LOG_LINKS (insn));
......@@ -4119,7 +4118,7 @@ clear_log_links (blocks)
EXECUTE_IF_SET_IN_SBITMAP (blocks, 0, i,
{
basic_block bb = BASIC_BLOCK (i);
rtx insn;
for (insn = bb->head; insn != NEXT_INSN (bb->end);
insn = NEXT_INSN (insn))
if (INSN_P (insn))
......
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