Commit d91dfff4 by J"orn Rennecke Committed by Joern Rennecke

function.c (purge_addressof_1): Handle case when a register has been used in a wider mode.

	* function.c (purge_addressof_1): Handle case when a register
	has been used in a wider mode.

From-SVN: r24887
parent a1660bad
Wed Jan 27 19:31:36 1999 J"orn Rennecke <amylaar@cygnus.co.uk>
* function.c (purge_addressof_1): Handle case when a register
has been used in a wider mode.
Wed Jan 27 11:58:18 1999 Dave Brolley <brolley@cygnus.com>
* cpplib.h (cpp_notice): Add prototype.
......
......@@ -2939,7 +2939,20 @@ purge_addressof_1 (loc, insn, force, store)
< GET_MODE_SIZE (GET_MODE (y)))
abort ();
z = gen_lowpart (GET_MODE (x), z);
if (GET_MODE_SIZE (GET_MODE (x)) > UNITS_PER_WORD
&& (GET_MODE_SIZE (GET_MODE (x))
> GET_MODE_SIZE (GET_MODE (z))))
{
/* This can occur as a result in invalid
pointer casts, e.g. float f; ...
*(long long int *)&f.
??? We could emit a warning here, but
without a line number that wouldn't be
very helpful. */
z = gen_rtx_SUBREG (GET_MODE (x), z, 0);
}
else
z = gen_lowpart (GET_MODE (x), z);
}
*loc = z;
......
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