builtins.c (java_build_function_call_expr): Renamed from build_function_call_expr.
authorKaveh R. Ghazi <ghazi@caip.rutgers.edu>
Fri, 17 Jan 2003 00:58:08 +0000 (00:58 +0000)
committerKaveh Ghazi <ghazi@gcc.gnu.org>
Fri, 17 Jan 2003 00:58:08 +0000 (00:58 +0000)
* builtins.c (java_build_function_call_expr): Renamed from
build_function_call_expr.  All callers changed.

From-SVN: r61415

gcc/java/ChangeLog
gcc/java/builtins.c

index 91441329753f8c61ad2c3feb68fa1964fa607487..69cbcb6f6b265b3c1e8fb135d96a3b3857155bf4 100644 (file)
@@ -1,5 +1,8 @@
 2003-01-16  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
 
+       * builtins.c (java_build_function_call_expr): Renamed from
+       build_function_call_expr.  All callers changed.
+
        * Make-lang.in (java/jcf-parse.o): Depend on $(TM_P_H).
        * jcf-parse.c: Include tm_p.h.
 
index ce8fe6d3847e4c69bf3abf0866757eec2a71a86d..2aec8fd04b2b338f81dbab5725563f09a964b3ef 100644 (file)
@@ -68,7 +68,7 @@ static tree cos_builtin (tree, tree);
 static tree sin_builtin (tree, tree);
 static tree sqrt_builtin (tree, tree);
 
-static tree build_function_call_expr (tree, tree);
+static tree java_build_function_call_expr (tree, tree);
 static void define_builtin (enum built_in_function, const char *,
                            enum built_in_class, tree, int);
 static tree define_builtin_type (int, int, int, int, int);
@@ -140,7 +140,7 @@ abs_builtin (tree method_return_type, tree method_arguments)
 
 /* Mostly copied from ../builtins.c.  */
 static tree
-build_function_call_expr (tree fn, tree arglist)
+java_build_function_call_expr (tree fn, tree arglist)
 {
   tree call_expr;
 
@@ -158,7 +158,7 @@ cos_builtin (tree method_return_type ATTRIBUTE_UNUSED, tree method_arguments)
   tree fn = built_in_decls[BUILT_IN_COS];
   if (fn == NULL_TREE)
     return NULL_TREE;
-  return build_function_call_expr (fn, method_arguments);
+  return java_build_function_call_expr (fn, method_arguments);
 }
 
 static tree
@@ -168,7 +168,7 @@ sin_builtin (tree method_return_type ATTRIBUTE_UNUSED, tree method_arguments)
   tree fn = built_in_decls[BUILT_IN_SIN];
   if (fn == NULL_TREE)
     return NULL_TREE;
-  return build_function_call_expr (fn, method_arguments);
+  return java_build_function_call_expr (fn, method_arguments);
 }
 
 static tree
@@ -178,7 +178,7 @@ sqrt_builtin (tree method_return_type ATTRIBUTE_UNUSED, tree method_arguments)
   tree fn = built_in_decls[BUILT_IN_SQRT];
   if (fn == NULL_TREE)
     return NULL_TREE;
-  return build_function_call_expr (fn, method_arguments);
+  return java_build_function_call_expr (fn, method_arguments);
 }
 
 \f