This is the mail archive of the
gcc@gcc.gnu.org
mailing list for the GCC project.
Re: Mainline is broken on ia64
On Mon, Jan 30, 2006 at 12:54:43PM -0800, Richard Henderson wrote:
> On Mon, Jan 30, 2006 at 10:31:18AM -0800, H. J. Lu wrote:
> > Does that mean DWARF2_UNWIND_INFO should be checked before using
> > INCOMING_RETURN_ADDR_RTX instead of checking INCOMING_RETURN_ADDR_RTX?
>
> Yes. But as-quoted, it already is.
[hjl@gnu-13 gcc]$ grep INCOMING_RETURN_ADDR_RTX *.c | grep ifdef
df-scan.c:#ifdef INCOMING_RETURN_ADDR_RTX
function.c:#ifdef INCOMING_RETURN_ADDR_RTX
Should they be changed to
#ifdef DWARF2_UNWIND_INFO
H.J.