From: Richard Stallman Date: Thu, 21 Oct 1993 21:13:11 +0000 (+0000) Subject: (CUMULATIVE_ARGS): Double size of adjust array. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=b796c573813945dfc2b832a53d2987f110cfb525;p=gcc.git (CUMULATIVE_ARGS): Double size of adjust array. From-SVN: r5865 --- diff --git a/gcc/config/mips/mips.h b/gcc/config/mips/mips.h index 80314f45b8b..f3b799ac586 100644 --- a/gcc/config/mips/mips.h +++ b/gcc/config/mips/mips.h @@ -1814,7 +1814,10 @@ typedef struct mips_args { int arg_words; /* # total words the arguments take */ int num_adjusts; /* number of adjustments made */ /* Adjustments made to args pass in regs. */ - struct rtx_def *adjust[MAX_ARGS_IN_REGISTERS]; + /* ??? The size is doubled to work around a + bug in the code that sets the adjustments + in function_arg. */ + struct rtx_def *adjust[MAX_ARGS_IN_REGISTERS*2]; } CUMULATIVE_ARGS; /* Initialize a variable CUM of type CUMULATIVE_ARGS