Commit a4437d18 by Nathan Froyd Committed by Nathan Froyd

trans-intrinsic.c (gfc_build_intrinsic_lib_fndecls): Use…

trans-intrinsic.c (gfc_build_intrinsic_lib_fndecls): Use build_function_type_list instead of build_function_type.

	* trans-intrinsic.c (gfc_build_intrinsic_lib_fndecls): Use
	build_function_type_list instead of build_function_type.  Correct
	argument order for func_frexp and func_scalbn.

From-SVN: r171987
parent 6e66d62d
2011-04-05 Nathan Froyd <froydnj@codesourcery.com>
* trans-intrinsic.c (gfc_build_intrinsic_lib_fndecls): Use
build_function_type_list instead of build_function_type. Correct
argument order for func_frexp and func_scalbn.
2011-04-05 Duncan Sands <baldrick@free.fr> 2011-04-05 Duncan Sands <baldrick@free.fr>
* f95-lang.c (build_builtin_fntypes): Swap frexp parameter types. * f95-lang.c (build_builtin_fntypes): Swap frexp parameter types.
......
...@@ -621,35 +621,38 @@ gfc_build_intrinsic_lib_fndecls (void) ...@@ -621,35 +621,38 @@ gfc_build_intrinsic_lib_fndecls (void)
C99-like library functions. For now, we only handle __float128 C99-like library functions. For now, we only handle __float128
q-suffixed functions. */ q-suffixed functions. */
tree tmp, func_1, func_2, func_cabs, func_frexp; tree type, complex_type, func_1, func_2, func_cabs, func_frexp;
tree func_lround, func_llround, func_scalbn, func_cpow; tree func_lround, func_llround, func_scalbn, func_cpow;
memset (quad_decls, 0, sizeof(tree) * (END_BUILTINS + 1)); memset (quad_decls, 0, sizeof(tree) * (END_BUILTINS + 1));
type = float128_type_node;
complex_type = complex_float128_type_node;
/* type (*) (type) */ /* type (*) (type) */
tmp = tree_cons (NULL_TREE, float128_type_node, void_list_node); func_1 = build_function_type_list (type, type, NULL_TREE);
func_1 = build_function_type (float128_type_node, tmp);
/* long (*) (type) */ /* long (*) (type) */
func_lround = build_function_type (long_integer_type_node, tmp); func_lround = build_function_type_list (long_integer_type_node,
type, NULL_TREE);
/* long long (*) (type) */ /* long long (*) (type) */
func_llround = build_function_type (long_long_integer_type_node, tmp); func_llround = build_function_type_list (long_long_integer_type_node,
type, NULL_TREE);
/* type (*) (type, type) */ /* type (*) (type, type) */
tmp = tree_cons (NULL_TREE, float128_type_node, tmp); func_2 = build_function_type_list (type, type, type, NULL_TREE);
func_2 = build_function_type (float128_type_node, tmp);
/* type (*) (type, &int) */ /* type (*) (type, &int) */
tmp = tree_cons (NULL_TREE, float128_type_node, void_list_node); func_frexp
tmp = tree_cons (NULL_TREE, build_pointer_type (integer_type_node), tmp); = build_function_type_list (type,
func_frexp = build_function_type (float128_type_node, tmp); type,
build_pointer_type (integer_type_node),
NULL_TREE);
/* type (*) (type, int) */ /* type (*) (type, int) */
tmp = tree_cons (NULL_TREE, float128_type_node, void_list_node); func_scalbn = build_function_type_list (type,
tmp = tree_cons (NULL_TREE, integer_type_node, tmp); type, integer_type_node, NULL_TREE);
func_scalbn = build_function_type (float128_type_node, tmp);
/* type (*) (complex type) */ /* type (*) (complex type) */
tmp = tree_cons (NULL_TREE, complex_float128_type_node, void_list_node); func_cabs = build_function_type_list (type, complex_type, NULL_TREE);
func_cabs = build_function_type (float128_type_node, tmp);
/* complex type (*) (complex type, complex type) */ /* complex type (*) (complex type, complex type) */
tmp = tree_cons (NULL_TREE, complex_float128_type_node, tmp); func_cpow
func_cpow = build_function_type (complex_float128_type_node, tmp); = build_function_type_list (complex_type,
complex_type, complex_type, NULL_TREE);
#define DEFINE_MATH_BUILTIN(ID, NAME, ARGTYPE) #define DEFINE_MATH_BUILTIN(ID, NAME, ARGTYPE)
#define DEFINE_MATH_BUILTIN_C(ID, NAME, ARGTYPE) #define DEFINE_MATH_BUILTIN_C(ID, NAME, ARGTYPE)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment