diff options
author | kenner <kenner@138bc75d-0d04-0410-961f-82ee72b054a4> | 1995-07-14 12:02:43 +0000 |
---|---|---|
committer | kenner <kenner@138bc75d-0d04-0410-961f-82ee72b054a4> | 1995-07-14 12:02:43 +0000 |
commit | 6e41463f60eacf9a74523b3b31c2de519134430a (patch) | |
tree | 945cd77cae09120b0ca2a49f63257fda3e2dc2de /gcc/function.h | |
parent | 2d3e676511b2865e778e15410ebb941692b3ab5e (diff) | |
download | gcc-6e41463f60eacf9a74523b3b31c2de519134430a.tar.gz |
(struct function): Add stdarg field.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@10122 138bc75d-0d04-0410-961f-82ee72b054a4
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 e12d7441140..24b4be25b05 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; |