summaryrefslogtreecommitdiffstats
path: root/gcc/java/builtins.c
diff options
context:
space:
mode:
authorghazi <ghazi@138bc75d-0d04-0410-961f-82ee72b054a4>2003-01-17 00:58:08 +0000
committerghazi <ghazi@138bc75d-0d04-0410-961f-82ee72b054a4>2003-01-17 00:58:08 +0000
commita0d2d33f580446824f9db005d1cdbd9cd804e190 (patch)
tree76a6bce9f1e2db6db268256e8b1d63a1efc840a2 /gcc/java/builtins.c
parente586c16d9a7799406e35c0c3e3b4de751213dfb6 (diff)
downloadppe42-gcc-a0d2d33f580446824f9db005d1cdbd9cd804e190.tar.gz
ppe42-gcc-a0d2d33f580446824f9db005d1cdbd9cd804e190.zip
* builtins.c (java_build_function_call_expr): Renamed from
build_function_call_expr. All callers changed. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@61415 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/java/builtins.c')
-rw-r--r--gcc/java/builtins.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/gcc/java/builtins.c b/gcc/java/builtins.c
index ce8fe6d3847..2aec8fd04b2 100644
--- a/gcc/java/builtins.c
+++ b/gcc/java/builtins.c
@@ -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);
}
OpenPOWER on IntegriCloud