Commit 8012b923 by Michael Meissner Committed by Michael Meissner

Fix powerpc breakage

From-SVN: r148456
parent 4c4bde29
2009-06-13 Michael Meissner <meissner@linux.vnet.ibm.com>
* config/rs6000/rs6000-c.c (altivec_resolve_overloaded_builtin):
Add location argument.
2009-06-13 Aldy Hernandez <aldyh@redhat.com>
* config/alpha/alpha.c (alpha_build_builtin_va_list): Pass location to
......
......@@ -3001,8 +3001,10 @@ altivec_build_resolved_builtin (tree *args, int n,
support Altivec's overloaded builtins. */
tree
altivec_resolve_overloaded_builtin (tree fndecl, void *passed_arglist)
altivec_resolve_overloaded_builtin (unsigned int loc, tree fndecl,
void *passed_arglist)
{
location_t input_location = (location_t) loc;
VEC(tree,gc) *arglist = (VEC(tree,gc) *) passed_arglist;
unsigned int nargs = VEC_length (tree, arglist);
unsigned int fcode = DECL_FUNCTION_CODE (fndecl);
......
......@@ -132,7 +132,7 @@ extern void function_arg_advance (CUMULATIVE_ARGS *, enum machine_mode,
tree, int, int);
extern int function_arg_boundary (enum machine_mode, tree);
extern rtx function_arg (CUMULATIVE_ARGS *, enum machine_mode, tree, int);
extern tree altivec_resolve_overloaded_builtin (tree, void *);
extern tree altivec_resolve_overloaded_builtin (unsigned int, tree, void *);
extern rtx rs6000_function_value (const_tree, const_tree);
extern rtx rs6000_libcall_value (enum machine_mode);
extern rtx rs6000_va_arg (tree, tree);
......
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