diff options
author | danglin <danglin@138bc75d-0d04-0410-961f-82ee72b054a4> | 2005-12-16 19:39:47 +0000 |
---|---|---|
committer | danglin <danglin@138bc75d-0d04-0410-961f-82ee72b054a4> | 2005-12-16 19:39:47 +0000 |
commit | 719899dd639803fe010c459b699575da87284b92 (patch) | |
tree | d45a01f4fea07a1d08a79c5d980ac326a57d8790 /gcc/reorg.c | |
parent | 3fded2acb5550cde42bcac7fb2196adcc8a3f370 (diff) | |
download | gcc-719899dd639803fe010c459b699575da87284b92.tar.gz |
PR middle-end/25457
* reorg.c (mostly_true_jump): Remove unused variable 'insn'.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@108672 138bc75d-0d04-0410-961f-82ee72b054a4
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 |