+2015-06-08 Nick Clifton <nickc@redhat.com>
+
+ * config/rx/rx.c (rx_function_value): Do not promote vector types.
+ (rx_promote_function_mode): Likewise.
+ * config/rx/rx.h (LIBCALL_VALUE): Likewise.
+
2015-06-08 Jakub Jelinek <jakub@redhat.com>
* genattrtab.c (insn_alternatives): Change type from int *
addr = XEXP (addr, 0);
gcc_assert (XINT (addr, 1) == UNSPEC_CONST);
- /* FIXME: Putting this case label here is an appalling abuse of the C language. */
- case UNSPEC:
addr = XVECEXP (addr, 0, 0);
gcc_assert (CONST_INT_P (addr));
+ fprintf (file, "#");
+ output_addr_const (file, addr);
+ break;
}
+ fprintf (file, "#");
+ output_addr_const (file, XEXP (addr, 0));
+ break;
+
+ case UNSPEC:
+ addr = XVECEXP (addr, 0, 0);
/* Fall through. */
case LABEL_REF:
case SYMBOL_REF:
if (GET_MODE_SIZE (mode) > 0
&& GET_MODE_SIZE (mode) < 4
&& ! COMPLEX_MODE_P (mode)
+ && ! VECTOR_TYPE_P (ret_type)
+ && ! VECTOR_MODE_P (mode)
)
return gen_rtx_REG (SImode, FUNC_RETURN_REGNUM);
if (for_return != 1
|| GET_MODE_SIZE (mode) >= 4
|| COMPLEX_MODE_P (mode)
+ || VECTOR_MODE_P (mode)
+ || VECTOR_TYPE_P (type)
|| GET_MODE_SIZE (mode) < 1)
return mode;
if (is_frame_related)
RTX_FRAME_RELATED_P (insn) = 1;
- return;
}
static void
if (flag_stack_usage_info)
current_function_static_stack_size = frame_size + stack_size;
-
+
/* If we use any of the callee-saved registers, save them now. */
if (mask)
{
GEN_INT (- (HOST_WIDE_INT) frame_size), true);
else
gen_safe_add (stack_pointer_rtx, frame_pointer_rtx, NULL_RTX,
- true);
+ false /* False because the epilogue will use the FP not the SP. */);
}
}