Commit 4bac3ef8 by Nick Clifton Committed by Nick Clifton

(jump): Remove prescan parameter from calls to final_scan_insn.

From-SVN: r98316
parent 3e1dec29
2005-04-18 Nick Clifton <nickc@redhat.com>
* config/h8300/h8300.md (jump): Remove prescan parameter from
calls to final_scan_insn.
* config/arc/arc.c (arc_output_function_epilogue): Remove prescan
parameter from calls to final_scan_insn.
......
......@@ -2347,8 +2347,8 @@
vec = XVEC (final_sequence, 0);
final_sequence = 0;
final_scan_insn (RTVEC_ELT (vec, 1), asm_out_file, optimize, 0, 1, & seen);
final_scan_insn (RTVEC_ELT (vec, 0), asm_out_file, optimize, 0, 1, & seen);
final_scan_insn (RTVEC_ELT (vec, 1), asm_out_file, optimize, 1, & seen);
final_scan_insn (RTVEC_ELT (vec, 0), asm_out_file, optimize, 1, & seen);
INSN_DELETED_P (RTVEC_ELT (vec, 1)) = 1;
return \"\";
}
......
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