Commit effdb493 by Richard Sandiford Committed by Richard Sandiford

simplify-rtx.c (simplify_immed_subreg): Fix construction of floating-point constants.

	* simplify-rtx.c (simplify_immed_subreg): Fix construction of
	floating-point constants.

From-SVN: r75540
parent fbfd77b8
2004-01-08 Richard Sandiford <rsandifo@redhat.com>
* simplify-rtx.c (simplify_immed_subreg): Fix construction of
floating-point constants.
2004-01-08 J. Brobecker <brobecker@gnat.com>
* dwarf2out.c (subrange_type_die): Add context_die parameter.
......
......@@ -3201,7 +3201,7 @@ simplify_immed_subreg (enum machine_mode outermode, rtx op,
ibase = elem_bitsize - 1 - i;
else
ibase = i;
tmp[ibase / 32] = (*vp++ & value_mask) << i % 32;
tmp[ibase / 32] |= (*vp++ & value_mask) << i % 32;
}
real_from_target (&r, tmp, outer_submode);
......
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