diff options
author | Andreas Jaeger <aj@gcc.gnu.org> | 2002-03-08 18:34:00 +0100 |
---|---|---|
committer | Andreas Jaeger <aj@gcc.gnu.org> | 2002-03-08 18:34:00 +0100 |
commit | 1e4e95d623d6f78528a54da2e6560fd458ce0065 (patch) | |
tree | dc230b6a58a01e076456c6f7bbd71461c0072b03 /gcc/flow.c | |
parent | 054ef90540950efb272a2e18e39bb0ca43d373d6 (diff) | |
download | gcc-1e4e95d623d6f78528a54da2e6560fd458ce0065.zip gcc-1e4e95d623d6f78528a54da2e6560fd458ce0065.tar.gz gcc-1e4e95d623d6f78528a54da2e6560fd458ce0065.tar.bz2 |
* flow.c (propagate_block_delete_insn): Remove unused variable.
From-SVN: r50446
Diffstat (limited to 'gcc/flow.c')
-rw-r--r-- | gcc/flow.c | 3 |
1 files changed, 1 insertions, 2 deletions
@@ -1,6 +1,6 @@ /* Data flow analysis for GNU compiler. Copyright (C) 1987, 1988, 1992, 1993, 1994, 1995, 1996, 1997, 1998, - 1999, 2000, 2001 Free Software Foundation, Inc. + 1999, 2000, 2001, 2002 Free Software Foundation, Inc. This file is part of GCC. @@ -1496,7 +1496,6 @@ propagate_block_delete_insn (insn) rtx insn; { rtx inote = find_reg_note (insn, REG_LABEL, NULL_RTX); - basic_block bb = BLOCK_FOR_INSN (insn); /* If the insn referred to a label, and that label was attached to an ADDR_VEC, it's safe to delete the ADDR_VEC. In fact, it's |