summaryrefslogtreecommitdiff
path: root/gcc/loop.c
diff options
context:
space:
mode:
authorlaw <law@138bc75d-0d04-0410-961f-82ee72b054a4>1997-08-18 02:06:48 +0000
committerlaw <law@138bc75d-0d04-0410-961f-82ee72b054a4>1997-08-18 02:06:48 +0000
commit6a5e191ff26ce9b2ee8322c6d6f64ee8db532e23 (patch)
treec591a53d18ff326ae07c13f86df578643e9cce1e /gcc/loop.c
parent4ec9dff4e4c6a0238c0ee6bea9f0be27455f9d77 (diff)
downloadgcc-6a5e191ff26ce9b2ee8322c6d6f64ee8db532e23.tar.gz
Fix typos in last haifa change.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@14827 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/loop.c')
-rw-r--r--gcc/loop.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/loop.c b/gcc/loop.c
index f7d79b39187..d3651638ad3 100644
--- a/gcc/loop.c
+++ b/gcc/loop.c
@@ -7109,7 +7109,7 @@ void analyze_loop_iterations (loop_start, loop_end)
/* make sure that the last loop insn is a conditional jump */
last_loop_insn = PREV_INSN (loop_end);
- if (GET_CODE (last_loop_insn != JUMP_INSN) || !condjump_p (last_loop_insn))
+ if (GET_CODE (last_loop_insn) != JUMP_INSN || !condjump_p (last_loop_insn)) {
if (loop_dump_stream)
fprintf (loop_dump_stream,
"analyze_loop_iterations %d: BCT instrumentation failed: invalid jump at loop end\n",
@@ -7300,7 +7300,7 @@ insert_bct (loop_start, loop_end)
This check is repeated from analyze_loop_iterations (),
because unrolling might have changed that. */
if (GET_CODE (PREV_INSN (loop_end)) != JUMP_INSN
- || !is_condjump_p (PREV_INSN (loop_end)))
+ || !is_condjump_p (PREV_INSN (loop_end))) {
if (loop_dump_stream)
fprintf (loop_dump_stream,
"insert_bct: not instrumenting BCT because of invalid branch\n");