Commit 8d454008 by Richard Henderson Committed by Richard Henderson

i386.c (function_arg): Pass variable sized structures correctly on the stack.

        * config/i386/i386.c (function_arg): Pass variable sized
        structures correctly on the stack.

From-SVN: r63442
parent 61ba356a
2003-02-25 Richard Henderson <rth@redhat.com>
* config/i386/i386.c (function_arg): Pass variable sized
structures correctly on the stack.
2003-02-25 Kazu Hirata <kazu@cs.umass.edu>
* reload1.c (reload_cse_move2add): Use STRICT_LOW_PART if PLUS
......
......@@ -2468,6 +2468,9 @@ function_arg (cum, mode, type, named)
break;
case BLKmode:
if (bytes < 0)
break;
/* FALLTHRU */
case DImode:
case SImode:
case HImode:
......
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