From 7b1124877bf99491ff9128243a692a05567d9864 Mon Sep 17 00:00:00 2001 From: Joseph Myers Date: Mon, 30 Aug 2004 20:21:48 +0100 Subject: c-tree.h (struct language_function): Add arg_info element. * c-tree.h (struct language_function): Add arg_info element. * c-decl.c (current_function_arg_info): New. (grokdeclarator, store_parm_decls): Use it instead of DECL_ARGUMENTS. (c_push_function_context, c_pop_function_context): Save and restore it. From-SVN: r86798 --- gcc/c-tree.h | 1 + 1 file changed, 1 insertion(+) (limited to 'gcc/c-tree.h') diff --git a/gcc/c-tree.h b/gcc/c-tree.h index 851b3a4..329948a 100644 --- a/gcc/c-tree.h +++ b/gcc/c-tree.h @@ -135,6 +135,7 @@ struct language_function GTY(()) tree x_break_label; tree x_cont_label; struct c_switch * GTY((skip)) x_switch_stack; + tree arg_info; int returns_value; int returns_null; int returns_abnormally; -- cgit v1.1