Commit a8d8890a by Kaz Kojima

bt-load.c (move_btr_def): Fix the order of arguments to validate_replace_rtx.

	* bt-load.c (move_btr_def): Fix the order of arguments
	to validate_replace_rtx.

From-SVN: r125789
parent a761c345
2007-06-18 Kaz Kojima <kkojima@gcc.gnu.org>
* bt-load.c (move_btr_def): Fix the order of arguments
to validate_replace_rtx.
2007-06-18 Nathan Sidwell <nathan@codesourcery.com>
* config/m68k/m68k-devices.def: Add 54450..54455.
......
......@@ -1228,7 +1228,7 @@ move_btr_def (basic_block new_def_bb, int btr, btr_def def, bitmap live_range,
replacement_rtx = btr_rtx;
else
replacement_rtx = gen_rtx_REG (GET_MODE (user->use), btr);
validate_replace_rtx (user->insn, user->use, replacement_rtx);
validate_replace_rtx (user->use, replacement_rtx, user->insn);
user->use = replacement_rtx;
}
}
......
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