From: Jeffrey A Law Date: Mon, 18 Jun 2001 18:57:41 +0000 (+0000) Subject: * dce.c (eliminate_dead_code): Fix formatting glitch. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=fbf8334971f8d6528f4847acb8453df0c838ec7c;p=gcc.git * dce.c (eliminate_dead_code): Fix formatting glitch. From-SVN: r43447 --- diff --git a/gcc/ChangeLog b/gcc/ChangeLog index d8d0683abcc..92e79c1a9fd 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,7 @@ +Mon Jun 18 12:50:49 2001 Jeffrey A Law (law@cygnus.com) + + * dce.c (eliminate_dead_code): Fix formatting glitch. + 2001-06-18 Jason Merrill * c-common.h (RETURN_NULLIFIED_P): New macro. 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. */