aboutsummaryrefslogtreecommitdiff
path: root/gcc
diff options
context:
space:
mode:
authorKaveh R. Ghazi <ghazi@caip.rutgers.edu>2000-04-05 01:52:54 +0000
committerKaveh Ghazi <ghazi@gcc.gnu.org>2000-04-05 01:52:54 +0000
commit3ccb603d24071da2691cc1d0cc35901e3ef47ac3 (patch)
treeaad1c4c525b56dc6e38453ea6e1297bfb6759f08 /gcc
parent055be976e64047401d8b736b123b227f6da1cbdb (diff)
downloadgcc-3ccb603d24071da2691cc1d0cc35901e3ef47ac3.zip
gcc-3ccb603d24071da2691cc1d0cc35901e3ef47ac3.tar.gz
gcc-3ccb603d24071da2691cc1d0cc35901e3ef47ac3.tar.bz2
* calls.c (initialize_argument_information): Fix typo in last change.
From-SVN: r32920
Diffstat (limited to 'gcc')
-rw-r--r--gcc/ChangeLog5
-rw-r--r--gcc/calls.c2
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