diff options
author | zlaski <zlaski@138bc75d-0d04-0410-961f-82ee72b054a4> | 2004-09-08 01:24:26 +0000 |
---|---|---|
committer | zlaski <zlaski@138bc75d-0d04-0410-961f-82ee72b054a4> | 2004-09-08 01:24:26 +0000 |
commit | adcbbf0b5aa28dc762955db96362274f1eccbb24 (patch) | |
tree | 0a02e16d6a49ddc18c5a8b811f1954417af24cd8 /gcc/c-decl.c | |
parent | 13dcc1500f944a3cdf7c264899287d17207ab7fd (diff) | |
download | ppe42-gcc-adcbbf0b5aa28dc762955db96362274f1eccbb24.tar.gz ppe42-gcc-adcbbf0b5aa28dc762955db96362274f1eccbb24.zip |
[gcc/ChangeLog]
2004-09-07 Ziemowit Laski <zlaski@apple.com>
* c-decl.c (groktypename_in_parm_context): Remove function.
* c-tree.h (groktypename_in_parm_context): Remove prototype.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@87169 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/c-decl.c')
-rw-r--r-- | gcc/c-decl.c | 12 |
1 files changed, 0 insertions, 12 deletions
diff --git a/gcc/c-decl.c b/gcc/c-decl.c index aad75640ca9..0ffda691861 100644 --- a/gcc/c-decl.c +++ b/gcc/c-decl.c @@ -2887,18 +2887,6 @@ groktypename (tree type_name) return type_name; } -/* Return a PARM_DECL node for a given pair of specs and declarator. */ - -tree -groktypename_in_parm_context (tree type_name) -{ - if (TREE_CODE (type_name) != TREE_LIST) - return type_name; - return grokdeclarator (TREE_VALUE (type_name), - TREE_PURPOSE (type_name), - PARM, false, NULL); -} - /* Decode a declarator in an ordinary declaration or data definition. This is called as soon as the type information and variable name have been parsed, before parsing the initializer if any. |