summaryrefslogtreecommitdiff
path: root/gcc/dce.c
diff options
context:
space:
mode:
authorlaw <law@138bc75d-0d04-0410-961f-82ee72b054a4>2001-06-18 18:57:41 +0000
committerlaw <law@138bc75d-0d04-0410-961f-82ee72b054a4>2001-06-18 18:57:41 +0000
commit9aa867d855d9622116403ab26e8042cddff0dae0 (patch)
treec1c596f73bbafa480b2db01ed63ae0366a0c2dee /gcc/dce.c
parent8eabba345ab5546ca5a6839545ade7ffcca609b8 (diff)
downloadgcc-9aa867d855d9622116403ab26e8042cddff0dae0.tar.gz
* dce.c (eliminate_dead_code): Fix formatting glitch.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@43447 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/dce.c')
-rw-r--r--gcc/dce.c11
1 files changed, 6 insertions, 5 deletions
diff --git a/gcc/dce.c b/gcc/dce.c
index 3a83d7a7026..ca0d998070b 100644
--- a/gcc/dce.c
+++ b/gcc/dce.c
@@ -544,11 +544,12 @@ eliminate_dead_code ()
(cdbte, current_instruction, edge_number,
{
rtx jump_insn = (INDEX_EDGE_PRED_BB (el, edge_number))->end;
- if (GET_CODE (jump_insn) == JUMP_INSN &&
- UNNECESSARY_P (jump_insn)) {
- RESURRECT_INSN (jump_insn);
- VARRAY_PUSH_RTX (unprocessed_instructions, jump_insn);
- }
+ if (GET_CODE (jump_insn) == JUMP_INSN
+ && UNNECESSARY_P (jump_insn))
+ {
+ RESURRECT_INSN (jump_insn);
+ VARRAY_PUSH_RTX (unprocessed_instructions, jump_insn);
+ }
});
/* Propagate through the operands. */