aboutsummaryrefslogtreecommitdiff
path: root/gcc
diff options
context:
space:
mode:
authorRichard Kenner <kenner@gcc.gnu.org>1995-06-14 08:08:06 -0400
committerRichard Kenner <kenner@gcc.gnu.org>1995-06-14 08:08:06 -0400
commit0763f3ab57d26a2b05ba36aecf044fb90c4c1327 (patch)
treecf352ce673576ccc2089b7a708db785aed622b19 /gcc
parent79d101f8fa999436270c9f8dfaacf2310327b1ad (diff)
downloadgcc-0763f3ab57d26a2b05ba36aecf044fb90c4c1327.zip
gcc-0763f3ab57d26a2b05ba36aecf044fb90c4c1327.tar.gz
gcc-0763f3ab57d26a2b05ba36aecf044fb90c4c1327.tar.bz2
(build_module_descriptor, really_start_method): Pass extra parm to
start_function. From-SVN: r9945
Diffstat (limited to 'gcc')
-rw-r--r--gcc/objc/objc-act.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/gcc/objc/objc-act.c b/gcc/objc/objc-act.c
index 3c61345..e0dfcd8 100644
--- a/gcc/objc/objc-act.c
+++ b/gcc/objc/objc-act.c
@@ -1682,7 +1682,7 @@ build_module_descriptor ()
tree_cons (NULL_TREE, NULL_TREE,
void_list_node),
NULL_TREE),
- NULL_TREE, 0);
+ NULL_TREE, NULL_TREE, 0);
#if 0 /* This should be turned back on later
for the systems where collect is not needed. */
/* Make these functions nonglobal
@@ -6960,7 +6960,7 @@ really_start_method (method, parmlist)
method_decl = ret_decl;
/* Fool the parser into thinking it is starting a function. */
- start_function (decl_specs, method_decl, NULL_TREE, 0);
+ start_function (decl_specs, method_decl, NULL_TREE, NULL_TREE, 0);
/* Unhook: this has the effect of restoring the abstract declarator. */
TREE_OPERAND (save_expr, 0) = NULL_TREE;
@@ -6971,7 +6971,7 @@ really_start_method (method, parmlist)
TREE_VALUE (TREE_TYPE (method)) = method_decl;
/* Fool the parser into thinking it is starting a function. */
- start_function (decl_specs, method_decl, NULL_TREE, 0);
+ start_function (decl_specs, method_decl, NULL_TREE, NULL_TREE, 0);
/* Unhook: this has the effect of restoring the abstract declarator. */
TREE_VALUE (TREE_TYPE (method)) = NULL_TREE;