diff options
author | mrs <mrs@138bc75d-0d04-0410-961f-82ee72b054a4> | 1997-05-06 23:05:54 +0000 |
---|---|---|
committer | mrs <mrs@138bc75d-0d04-0410-961f-82ee72b054a4> | 1997-05-06 23:05:54 +0000 |
commit | 0bc644e0031a247a30ddbe64fb50b94fdd4e19fd (patch) | |
tree | 5ce87329cf1055017d0bd705ecac06be33f23764 /gcc/loop.c | |
parent | 37808e3a06df2a78362bff6389cc0b2e2812f490 (diff) | |
download | ppe42-gcc-0bc644e0031a247a30ddbe64fb50b94fdd4e19fd.tar.gz ppe42-gcc-0bc644e0031a247a30ddbe64fb50b94fdd4e19fd.zip |
reformat a little to match GNU coding standards.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@14024 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/loop.c')
-rw-r--r-- | gcc/loop.c | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/gcc/loop.c b/gcc/loop.c index 698e7a1b9de..64c1245977a 100644 --- a/gcc/loop.c +++ b/gcc/loop.c @@ -1804,8 +1804,8 @@ move_movables (movables, threshold, insn_count, loop_start, end, nregs) contains objects other than hard registers we need to copy it. */ if (CALL_INSN_FUNCTION_USAGE (temp)) - CALL_INSN_FUNCTION_USAGE (i1) = - copy_rtx (CALL_INSN_FUNCTION_USAGE (temp)); + CALL_INSN_FUNCTION_USAGE (i1) + = copy_rtx (CALL_INSN_FUNCTION_USAGE (temp)); } else i1 = emit_insn_before (body, loop_start); @@ -1848,8 +1848,8 @@ move_movables (movables, threshold, insn_count, loop_start, end, nregs) contains objects other than hard registers we need to copy it. */ if (CALL_INSN_FUNCTION_USAGE (p)) - CALL_INSN_FUNCTION_USAGE (i1) = - copy_rtx (CALL_INSN_FUNCTION_USAGE (p)); + CALL_INSN_FUNCTION_USAGE (i1) + = copy_rtx (CALL_INSN_FUNCTION_USAGE (p)); } else i1 = emit_insn_before (PATTERN (p), loop_start); @@ -5920,8 +5920,8 @@ check_dbra_loop (loop_end, insn_count, loop_start) if (GET_CODE (bl->initial_value) == CONST_INT && INTVAL (bl->initial_value) > 0 - && (INTVAL (bl->initial_value) % - (-INTVAL (bl->biv->add_val))) == 0) + && (INTVAL (bl->initial_value) + % (-INTVAL (bl->biv->add_val))) == 0) { /* register always nonnegative, add REG_NOTE to branch */ REG_NOTES (PREV_INSN (loop_end)) |