diff options
Diffstat (limited to 'gcc/cp/cp-tree.h')
-rw-r--r-- | gcc/cp/cp-tree.h | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/gcc/cp/cp-tree.h b/gcc/cp/cp-tree.h index ca069b765cf..a39e9da6975 100644 --- a/gcc/cp/cp-tree.h +++ b/gcc/cp/cp-tree.h @@ -175,9 +175,6 @@ framework extensions, you must include this file before toplev.h, not after. to which the vptr should be initialized. Use get_vtbl_decl_for_binfo to extract the VAR_DECL for the complete vtable. - DECL_ARGUMENTS - For a VAR_DECL this is DECL_ANON_UNION_ELEMS. - DECL_VINDEX This field is NULL for a non-virtual function. For a virtual function, it is eventually set to an INTEGER_CST indicating the @@ -4108,8 +4105,8 @@ struct cp_declarator { } id; /* For functions. */ struct { - /* The parameters to the function. */ - cp_parameter_declarator *parameters; + /* The parameters to the function as a TREE_LIST of decl/default. */ + tree parameters; /* The cv-qualifiers for the function. */ cp_cv_quals qualifiers; /* The exception-specification for the function. */ |