Commit 6a04f4e0 by Alan Modra Committed by Alan Modra

re PR target/10073 (powerpc cannot split insn while building rscheme)

	PR target/10073
	* combine.c (force_to_mode <NOT>): Use gen_int_mode.

From-SVN: r64564
parent c59fca59
2003-03-19 Alan Modra <amodra@bigpond.net.au>
PR target/10073
* combine.c (force_to_mode <NOT>): Use gen_int_mode.
2003-03-18 Jakub Jelinek <jakub@redhat.com>
* config/s390/s390.c (s390_output_dwarf_dtprel): New.
......
......@@ -7358,7 +7358,8 @@ force_to_mode (x, mode, mask, reg, just_select)
< GET_MODE_BITSIZE (GET_MODE (x)))
&& INTVAL (XEXP (XEXP (x, 0), 1)) < HOST_BITS_PER_WIDE_INT)
{
temp = GEN_INT (mask << INTVAL (XEXP (XEXP (x, 0), 1)));
temp = gen_int_mode (mask << INTVAL (XEXP (XEXP (x, 0), 1)),
GET_MODE (x));
temp = gen_binary (XOR, GET_MODE (x), XEXP (XEXP (x, 0), 0), temp);
x = gen_binary (LSHIFTRT, GET_MODE (x), temp, XEXP (XEXP (x, 0), 1));
......
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