Commit 4e9633f0 by Jeff Law

Fix typos in last haifa change.

From-SVN: r14827
parent 9c0416e0
...@@ -7109,7 +7109,7 @@ void analyze_loop_iterations (loop_start, loop_end) ...@@ -7109,7 +7109,7 @@ void analyze_loop_iterations (loop_start, loop_end)
/* make sure that the last loop insn is a conditional jump */ /* make sure that the last loop insn is a conditional jump */
last_loop_insn = PREV_INSN (loop_end); 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) if (loop_dump_stream)
fprintf (loop_dump_stream, fprintf (loop_dump_stream,
"analyze_loop_iterations %d: BCT instrumentation failed: invalid jump at loop end\n", "analyze_loop_iterations %d: BCT instrumentation failed: invalid jump at loop end\n",
...@@ -7300,7 +7300,7 @@ insert_bct (loop_start, loop_end) ...@@ -7300,7 +7300,7 @@ insert_bct (loop_start, loop_end)
This check is repeated from analyze_loop_iterations (), This check is repeated from analyze_loop_iterations (),
because unrolling might have changed that. */ because unrolling might have changed that. */
if (GET_CODE (PREV_INSN (loop_end)) != JUMP_INSN 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) if (loop_dump_stream)
fprintf (loop_dump_stream, fprintf (loop_dump_stream,
"insert_bct: not instrumenting BCT because of invalid branch\n"); "insert_bct: not instrumenting BCT because of invalid branch\n");
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment