diff options
author | John David Anglin <dave.anglin@nrc-cnrc.gc.ca> | 2005-12-16 19:39:47 +0000 |
---|---|---|
committer | John David Anglin <danglin@gcc.gnu.org> | 2005-12-16 19:39:47 +0000 |
commit | 5535b63f1add1c67b56e01641eff3e30bec6d7e4 (patch) | |
tree | d45a01f4fea07a1d08a79c5d980ac326a57d8790 /gcc/reorg.c | |
parent | 494ef4c25495d4014677388a002715ac2eb018ed (diff) | |
download | gcc-5535b63f1add1c67b56e01641eff3e30bec6d7e4.tar.gz |
re PR middle-end/25457 (reorg.c:966: warning: unused variable 'insn')
PR middle-end/25457
* reorg.c (mostly_true_jump): Remove unused variable 'insn'.
From-SVN: r108672
Diffstat (limited to 'gcc/reorg.c')
-rw-r--r-- | gcc/reorg.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/reorg.c b/gcc/reorg.c index 104ad8e467f..431ef3c116e 100644 --- a/gcc/reorg.c +++ b/gcc/reorg.c @@ -963,7 +963,7 @@ static int mostly_true_jump (rtx jump_insn, rtx condition) { rtx target_label = JUMP_LABEL (jump_insn); - rtx insn, note; + rtx note; int rare_dest, rare_fallthrough; /* If branch probabilities are available, then use that number since it |