aboutsummaryrefslogtreecommitdiff
path: root/gcc/objc
diff options
context:
space:
mode:
authorJason Merrill <jason@redhat.com>2003-05-20 16:24:08 -0400
committerJason Merrill <jason@gcc.gnu.org>2003-05-20 16:24:08 -0400
commit1cd69e2bed74053a58529b14e13373a474baecd4 (patch)
tree47fe4e814049329aebee13405098f61ed66bd1d9 /gcc/objc
parenta60a9553a1193112da334f4acb4b705c3f4745a5 (diff)
downloadgcc-1cd69e2bed74053a58529b14e13373a474baecd4.zip
gcc-1cd69e2bed74053a58529b14e13373a474baecd4.tar.gz
gcc-1cd69e2bed74053a58529b14e13373a474baecd4.tar.bz2
tree.c (expr_last): New fn.
* tree.c (expr_last): New fn. * tree.h: Declare it. * objc/objc-act (expr_last): Rename to objc_expr_last. From-SVN: r67035
Diffstat (limited to 'gcc/objc')
-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 0625958..e0670e5 100644
--- a/gcc/objc/objc-act.c
+++ b/gcc/objc/objc-act.c
@@ -217,7 +217,7 @@ static void really_start_method PARAMS ((tree, tree));
static int comp_method_with_proto PARAMS ((tree, tree));
static int comp_proto_with_proto PARAMS ((tree, tree));
static tree get_arg_type_list PARAMS ((tree, int, int));
-static tree expr_last PARAMS ((tree));
+static tree objc_expr_last PARAMS ((tree));
/* Utilities for debugging and error diagnostics. */
@@ -6998,7 +6998,7 @@ encode_field_decl (field_decl, curtype, format)
}
static tree
-expr_last (complex_expr)
+objc_expr_last (complex_expr)
tree complex_expr;
{
tree next;
@@ -7059,7 +7059,7 @@ start_method_def (method)
if (arg_decl)
{
- tree last_expr = expr_last (arg_decl);
+ tree last_expr = objc_expr_last (arg_decl);
/* Unite the abstract decl with its name. */
TREE_OPERAND (last_expr, 0) = KEYWORD_ARG_NAME (arglist);
@@ -7195,7 +7195,7 @@ really_start_method (method, parmlist)
{
/* Unite the complex decl (specified in the abstract decl) with the
function decl just synthesized..(int *), (int (*)()), (int (*)[]). */
- tree save_expr = expr_last (ret_decl);
+ tree save_expr = objc_expr_last (ret_decl);
TREE_OPERAND (save_expr, 0) = method_decl;
method_decl = ret_decl;