Commit e2d3b294 by Ian Lance Taylor Committed by Ian Lance Taylor

init-regs.c (initialize_uninitialized_regs): Call emit_insn_before rather than add_insn_before.

	* init-regs.c (initialize_uninitialized_regs): Call
	emit_insn_before rather than add_insn_before.

From-SVN: r128152
parent f86bfcab
2007-09-05 Ian Lance Taylor <iant@google.com>
* init-regs.c (initialize_uninitialized_regs): Call
emit_insn_before rather than add_insn_before.
2007-09-05 Jakub Jelinek <jakub@redhat.com>
* builtins.def (BUILT_IN_VA_ARG_PACK): New built-in.
......
......@@ -106,7 +106,7 @@ initialize_uninitialized_regs (void)
emit_move_insn (reg, CONST0_RTX (GET_MODE (reg)));
move_insn = get_insns ();
end_sequence ();
add_insn_before (move_insn, insn, bb);
emit_insn_before (move_insn, insn);
if (dump_file)
fprintf (dump_file,
"adding initialization in %s of reg %d at in block %d for insn %d.\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