Commit 98c0d8d1 by Richard Henderson Committed by Richard Henderson

* expr.c (block_move_libcall_safe_for_call_parm): Fix thinko.

From-SVN: r56710
parent a5f3f0ab
2002-08-31 Richard Henderson <rth@redhat.com>
* expr.c (block_move_libcall_safe_for_call_parm): Fix thinko.
2002-08-31 John David Anglin <dave@hiauly1.hia.nrc.ca>
* pa.c (pa_globalize_label): Add ATTRIBUTE_UNUSED to prototype.
......
......@@ -1777,8 +1777,7 @@ block_move_libcall_safe_for_call_parm ()
arg = TYPE_ARG_TYPES (TREE_TYPE (fn));
for ( ; arg != void_list_node ; arg = TREE_CHAIN (arg))
{
enum machine_mode mode
= TYPE_MODE (TREE_TYPE (TREE_VALUE (arg)));
enum machine_mode mode = TYPE_MODE (TREE_VALUE (arg));
rtx tmp = FUNCTION_ARG (args_so_far, mode, NULL_TREE, 1);
if (!tmp || !REG_P (tmp))
goto fail_takes_regs;
......
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