diff options
author | Richard Kenner <kenner@gcc.gnu.org> | 1994-04-06 07:49:37 -0400 |
---|---|---|
committer | Richard Kenner <kenner@gcc.gnu.org> | 1994-04-06 07:49:37 -0400 |
commit | 91ab952c02e65dcb5867ac1d308dc4dc0d180fbd (patch) | |
tree | adb10342e68613a7ba6be4a089e8ae48bb957628 /gcc/function.h | |
parent | 17bbab26bbe9481fda74e2f6ccfd68ff5842774b (diff) | |
download | gcc-91ab952c02e65dcb5867ac1d308dc4dc0d180fbd.zip gcc-91ab952c02e65dcb5867ac1d308dc4dc0d180fbd.tar.gz gcc-91ab952c02e65dcb5867ac1d308dc4dc0d180fbd.tar.bz2 |
(struct function): New field for current_function_varargs.
From-SVN: r6985
Diffstat (limited to 'gcc/function.h')
-rw-r--r-- | gcc/function.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/gcc/function.h b/gcc/function.h index 36640b8..b37a59a 100644 --- a/gcc/function.h +++ b/gcc/function.h @@ -1,5 +1,5 @@ /* Structure for saving state for a nested function. - Copyright (C) 1989, 1992, 1993 Free Software Foundation, Inc. + Copyright (C) 1989, 1992, 1993, 1994 Free Software Foundation, Inc. This file is part of GNU CC. @@ -73,6 +73,7 @@ struct function int args_size; int pretend_args_size; rtx arg_offset_rtx; + int varargs; int max_parm_reg; rtx *parm_reg_stack_loc; int outgoing_args_size; |