aboutsummaryrefslogtreecommitdiff
path: root/gcc/objc/objc-act.c
diff options
context:
space:
mode:
authorRichard Kenner <kenner@gcc.gnu.org>1995-03-09 21:32:43 -0500
committerRichard Kenner <kenner@gcc.gnu.org>1995-03-09 21:32:43 -0500
commitd8d27748c58c74cd3405bc9da5e12ec89f53722f (patch)
tree97e9af792aa729b3d903d3c822de07c532b5612b /gcc/objc/objc-act.c
parent60905ee8bd3780ce4bbbe072d66429259e3172d5 (diff)
downloadgcc-d8d27748c58c74cd3405bc9da5e12ec89f53722f.zip
gcc-d8d27748c58c74cd3405bc9da5e12ec89f53722f.tar.gz
gcc-d8d27748c58c74cd3405bc9da5e12ec89f53722f.tar.bz2
(build_module_descriptor, really_start_method): Pass new parm to
start_function. From-SVN: r9150
Diffstat (limited to 'gcc/objc/objc-act.c')
-rw-r--r--gcc/objc/objc-act.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/gcc/objc/objc-act.c b/gcc/objc/objc-act.c
index 96be32f..7dae06f 100644
--- a/gcc/objc/objc-act.c
+++ b/gcc/objc/objc-act.c
@@ -1,5 +1,5 @@
/* Implement classes and message passing for Objective C.
- Copyright (C) 1992, 1993, 1994 Free Software Foundation, Inc.
+ Copyright (C) 1992, 1993, 1994, 1995 Free Software Foundation, Inc.
Author: Steve Naroff.
This file is part of GNU CC.
@@ -1560,7 +1560,7 @@ build_module_descriptor ()
tree_cons (NULL_TREE, NULL_TREE,
void_list_node),
NULL_TREE),
- 0);
+ NULL_TREE, 0);
#if 0 /* This should be turned back on later
for the systems where collect is not needed. */
/* Make these functions nonglobal
@@ -6571,7 +6571,7 @@ really_start_method (method, parmlist)
TREE_OPERAND (save_expr, 0) = method_decl;
method_decl = ret_decl;
/* fool the parser into thinking it is starting a function */
- start_function (decl_specs, method_decl, 0);
+ start_function (decl_specs, method_decl, NULL_TREE, 0);
/* unhook...this has the effect of restoring the abstract declarator */
TREE_OPERAND (save_expr, 0) = NULLT;
}
@@ -6579,7 +6579,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, 0);
+ start_function (decl_specs, method_decl, NULL_TREE, 0);
/* unhook...this has the effect of restoring the abstract declarator */
TREE_VALUE (TREE_TYPE (method)) = NULLT;
}