Commit 5650dfbd by Roger Sayle Committed by Roger Sayle

expr.c (emit_group_store): Make bytepos a HOST_WIDE_INT to signed vs.


	* expr.c (emit_group_store): Make bytepos a HOST_WIDE_INT to
	signed vs. unsigned comparison failures on some hosts.

From-SVN: r112567
parent 738caefc
2006-03-30 Roger Sayle <roger@eyesopen.com>
* expr.c (emit_group_store): Make BYTEPOS a HOST_WIDE_INT to
signed vs. unsigned comparison failures on some hosts.
2006-03-31 Alan Modra <amodra@bigpond.net.au>
PR target/26459
......
......@@ -1926,7 +1926,7 @@ emit_group_store (rtx orig_dst, rtx src, tree type ATTRIBUTE_UNUSED, int ssize)
{
enum machine_mode outer = GET_MODE (dst);
enum machine_mode inner;
unsigned int bytepos;
HOST_WIDE_INT bytepos;
bool done = false;
rtx temp;
......
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