aboutsummaryrefslogtreecommitdiff
path: root/gcc/java/builtins.c
diff options
context:
space:
mode:
Diffstat (limited to 'gcc/java/builtins.c')
-rw-r--r--gcc/java/builtins.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/java/builtins.c b/gcc/java/builtins.c
index 2449859..41ded85 100644
--- a/gcc/java/builtins.c
+++ b/gcc/java/builtins.c
@@ -181,7 +181,7 @@ sqrt_builtin (method_return_type, method_arguments)
tree method_return_type, method_arguments;
{
/* FIXME: this assumes that jdouble and double are the same. */
- tree fn = built_in_decls[BUILT_IN_SQRTF];
+ tree fn = built_in_decls[BUILT_IN_SQRT];
if (fn == NULL_TREE)
return NULL_TREE;
return build_function_call_expr (fn, method_arguments);