diff options
author | Richard Kenner <kenner@gcc.gnu.org> | 1995-07-14 08:02:43 -0400 |
---|---|---|
committer | Richard Kenner <kenner@gcc.gnu.org> | 1995-07-14 08:02:43 -0400 |
commit | 7da7e611099b29c3586647a3e72cf863eb26e1a9 (patch) | |
tree | 945cd77cae09120b0ca2a49f63257fda3e2dc2de /gcc/function.h | |
parent | f03e51d485795b1bd6c4a5ccc58f5f411835ba9b (diff) | |
download | gcc-7da7e611099b29c3586647a3e72cf863eb26e1a9.zip gcc-7da7e611099b29c3586647a3e72cf863eb26e1a9.tar.gz gcc-7da7e611099b29c3586647a3e72cf863eb26e1a9.tar.bz2 |
(struct function): Add stdarg field.
From-SVN: r10122
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 e12d744..24b4be2 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, 1994 Free Software Foundation, Inc. + Copyright (C) 1989, 1992, 1993, 1994, 1995 Free Software Foundation, Inc. This file is part of GNU CC. @@ -84,6 +84,7 @@ struct function int pretend_args_size; rtx arg_offset_rtx; int varargs; + int stdarg; int max_parm_reg; rtx *parm_reg_stack_loc; int outgoing_args_size; |