diff options
| author | ghazi <ghazi@138bc75d-0d04-0410-961f-82ee72b054a4> | 2000-04-05 01:52:54 +0000 |
|---|---|---|
| committer | ghazi <ghazi@138bc75d-0d04-0410-961f-82ee72b054a4> | 2000-04-05 01:52:54 +0000 |
| commit | a462a0f48faa770fe8568de7b7b5d89e9352ada1 (patch) | |
| tree | aad1c4c525b56dc6e38453ea6e1297bfb6759f08 /gcc | |
| parent | 22d9265e4c9b07227ad1ccf2bf4e6417711353c7 (diff) | |
| download | ppe42-gcc-a462a0f48faa770fe8568de7b7b5d89e9352ada1.tar.gz ppe42-gcc-a462a0f48faa770fe8568de7b7b5d89e9352ada1.zip | |
* calls.c (initialize_argument_information): Fix typo in last change.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@32920 138bc75d-0d04-0410-961f-82ee72b054a4
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 07f70dccb70..e715f29c34a 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 8b6d343cee2..eb3d7946d10 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 |

