mirror of
git://gcc.gnu.org/git/gcc.git
synced 2025-03-13 01:27:19 +08:00
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:
parent
61ba356a99
commit
8d4540089a
@ -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
|
||||
|
@ -2468,6 +2468,9 @@ function_arg (cum, mode, type, named)
|
||||
break;
|
||||
|
||||
case BLKmode:
|
||||
if (bytes < 0)
|
||||
break;
|
||||
/* FALLTHRU */
|
||||
case DImode:
|
||||
case SImode:
|
||||
case HImode:
|
||||
|
Loading…
Reference in New Issue
Block a user