Commit b796c573 by Richard Stallman

(CUMULATIVE_ARGS): Double size of adjust array.

From-SVN: r5865
parent 75b6984c
...@@ -1814,7 +1814,10 @@ typedef struct mips_args { ...@@ -1814,7 +1814,10 @@ typedef struct mips_args {
int arg_words; /* # total words the arguments take */ int arg_words; /* # total words the arguments take */
int num_adjusts; /* number of adjustments made */ int num_adjusts; /* number of adjustments made */
/* Adjustments made to args pass in regs. */ /* 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; } CUMULATIVE_ARGS;
/* Initialize a variable CUM of type CUMULATIVE_ARGS /* Initialize a variable CUM of type CUMULATIVE_ARGS
......
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