Commit c285f57a by Jakub Jelinek Committed by Jeff Law

combine.c (setup_incoming_promotions): Pass an outgoing regno to…

combine.c (setup_incoming_promotions): Pass an outgoing regno to FUNCTION_ARG_REGNO_P which it expects.

        * combine.c (setup_incoming_promotions): Pass an outgoing
        regno to FUNCTION_ARG_REGNO_P which it expects.

From-SVN: r30685
parent 3fad8d4a
1999-11-28 Jakub Jelinek <jakub@redhat.com>
* combine.c (setup_incoming_promotions): Pass an outgoing
regno to FUNCTION_ARG_REGNO_P which it expects.
1999-11-28 Andreas Jaeger <aj@suse.de>
* mips/linux.h (CPP_PREDEFINES): Undefine before redefining.
......
......@@ -768,8 +768,14 @@ setup_incoming_promotions ()
int unsignedp;
rtx first = get_insns ();
#ifndef OUTGOING_REGNO
#define OUTGOING_REGNO(N) N
#endif
for (regno = 0; regno < FIRST_PSEUDO_REGISTER; regno++)
if (FUNCTION_ARG_REGNO_P (regno)
/* Check whether this register can hold an incoming pointer
argument. FUNCTION_ARG_REGNO_P tests outgoing register
numbers, so translate if necessary due to register windows. */
if (FUNCTION_ARG_REGNO_P (OUTGOING_REGNO (regno))
&& (reg = promoted_input_arg (regno, &mode, &unsignedp)) != 0)
{
record_value_for_reg
......
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