diff options
author | mrs <mrs@138bc75d-0d04-0410-961f-82ee72b054a4> | 2003-11-12 19:53:17 +0000 |
---|---|---|
committer | mrs <mrs@138bc75d-0d04-0410-961f-82ee72b054a4> | 2003-11-12 19:53:17 +0000 |
commit | f0c467daaf790c59979c5f05b903e67d60f20877 (patch) | |
tree | 3688d9296922e3e7a321a8a99b5bbb6825b5345d /gcc/langhooks.h | |
parent | c2dfd8f6b99b8f4455a6a6978d27ced4ccd7bb71 (diff) | |
download | gcc-f0c467daaf790c59979c5f05b903e67d60f20877.tar.gz |
* c-typeck.c (c_convert_parm_for_inlining): Add argnum, which
is the argumnt we are processing so that warnings and errors
will have that information.
* c-tree.h (c_convert_parm_for_inlining): Add argnum.
* lang-hooks-def.h
(lhd_tree_inlining_convert_parm_for_inlining): Likewse.
* langhooks.c (lhd_tree_inlining_convert_parm_for_inlining): Likewise.
* langhooks.h (convert_parm_for_inlining): Likewise.
* tree-inline.c (initialize_inlined_parameters): Compute and
pass argnum down.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@73507 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/langhooks.h')
-rw-r--r-- | gcc/langhooks.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/langhooks.h b/gcc/langhooks.h index cb5941ff3eb..ce6b7a6b1c7 100644 --- a/gcc/langhooks.h +++ b/gcc/langhooks.h @@ -47,7 +47,7 @@ struct lang_hooks_for_tree_inlining bool (*var_mod_type_p) (tree); int (*start_inlining) (tree); void (*end_inlining) (tree); - tree (*convert_parm_for_inlining) (tree, tree, tree); + tree (*convert_parm_for_inlining) (tree, tree, tree, int); int (*estimate_num_insns) (tree); }; |