spu-c.c (spu_resolve_overloaded_builtin): Call lang_hooks.types_compatible_p instead of comptypes.
* config/spu/spu-c.c (spu_resolve_overloaded_builtin): Call lang_hooks.types_compatible_p instead of comptypes. From-SVN: r156873
This commit is contained in:
parent
7890246f66
commit
86866b288e
@ -1,3 +1,8 @@
|
||||
2010-02-18 Ulrich Weigand <Ulrich.Weigand@de.ibm.com>
|
||||
|
||||
* config/spu/spu-c.c (spu_resolve_overloaded_builtin): Call
|
||||
lang_hooks.types_compatible_p instead of comptypes.
|
||||
|
||||
2010-02-18 Sebastian Huber <sebastian.huber@embedded-brains.de>
|
||||
|
||||
* config/arm/lib1funcs.asm (__prefer_thumb__): New define.
|
||||
|
@ -162,8 +162,7 @@ spu_resolve_overloaded_builtin (location_t loc, tree fndecl, void *passed_args)
|
||||
if ((!SCALAR_TYPE_P (param_type)
|
||||
|| !SCALAR_TYPE_P (arg_type)
|
||||
|| (all_scalar && p == 0))
|
||||
&& !comptypes (TYPE_MAIN_VARIANT (param_type),
|
||||
TYPE_MAIN_VARIANT (arg_type)))
|
||||
&& !lang_hooks.types_compatible_p (param_type, arg_type))
|
||||
break;
|
||||
}
|
||||
if (param == void_list_node)
|
||||
|
Loading…
Reference in New Issue
Block a user