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
This commit is contained in:
Richard Henderson 2003-02-25 17:26:51 -08:00 committed by Richard Henderson
parent 61ba356a99
commit 8d4540089a
2 changed files with 8 additions and 0 deletions

View File

@ -1,3 +1,8 @@
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

View File

@ -2468,6 +2468,9 @@ function_arg (cum, mode, type, named)
break;
case BLKmode:
if (bytes < 0)
break;
/* FALLTHRU */
case DImode:
case SImode:
case HImode: