diff options
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/ChangeLog | 5 | ||||
-rw-r--r-- | gcc/calls.c | 2 |
2 files changed, 6 insertions, 1 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 07f70dc..e715f29 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,8 @@ +2000-04-04 Kaveh R. Ghazi <ghazi@caip.rutgers.edu> + + * calls.c (initialize_argument_information): Fix typo in previous + change. + 2000-04-04 Richard Henderson <rth@cygnus.com> * regrename.c (consider_available): Test fixed_regs not diff --git a/gcc/calls.c b/gcc/calls.c index 8b6d343..eb3d794 100644 --- a/gcc/calls.c +++ b/gcc/calls.c @@ -1218,7 +1218,7 @@ initialize_argument_information (num_actuals, args, args_size, n_named_args, /* If this is a sibling call and the machine has register windows, the register window has to be unwinded before calling the routine, so arguments have to go into the incoming registers. */ - if (ecf_flags & ECF_SIBCALL) + if (*ecf_flags & ECF_SIBCALL) args[i].reg = FUNCTION_INCOMING_ARG (*args_so_far, mode, type, argpos < n_named_args); else |