target.def (function_arg, [...]): Remove const qualifier on CUMULATIVE_ARGS parameter.
* target.def (function_arg, function_incoming_arg): Remove const qualifier on CUMULATIVE_ARGS parameter. * targhooks.h (default_function_arg, default_function_incoming_arg): Likewise. * targhooks.c (default_function_arg, default_function_incoming_arg): Likewise. * config/i386/i386.c (ix86_function_arg): Likewise. From-SVN: r163386
This commit is contained in:
parent
a5d8253f7a
commit
29e8814292
@ -1,3 +1,13 @@
|
|||||||
|
2010-08-19 Nathan Froyd <froydnj@codesourcery.com>
|
||||||
|
|
||||||
|
* target.def (function_arg, function_incoming_arg): Remove const
|
||||||
|
qualifier on CUMULATIVE_ARGS parameter.
|
||||||
|
* targhooks.h (default_function_arg, default_function_incoming_arg):
|
||||||
|
Likewise.
|
||||||
|
* targhooks.c (default_function_arg, default_function_incoming_arg):
|
||||||
|
Likewise.
|
||||||
|
* config/i386/i386.c (ix86_function_arg): Likewise.
|
||||||
|
|
||||||
2010-08-19 Jakub Jelinek <jakub@redhat.com>
|
2010-08-19 Jakub Jelinek <jakub@redhat.com>
|
||||||
|
|
||||||
PR target/45336
|
PR target/45336
|
||||||
|
@ -6466,7 +6466,7 @@ function_arg_ms_64 (const CUMULATIVE_ARGS *cum, enum machine_mode mode,
|
|||||||
ellipsis). */
|
ellipsis). */
|
||||||
|
|
||||||
static rtx
|
static rtx
|
||||||
ix86_function_arg (const CUMULATIVE_ARGS *cum, enum machine_mode omode,
|
ix86_function_arg (CUMULATIVE_ARGS *cum, enum machine_mode omode,
|
||||||
const_tree type, bool named)
|
const_tree type, bool named)
|
||||||
{
|
{
|
||||||
enum machine_mode mode = omode;
|
enum machine_mode mode = omode;
|
||||||
|
@ -1788,7 +1788,7 @@ DEFHOOK_UNDOC
|
|||||||
DEFHOOK_UNDOC
|
DEFHOOK_UNDOC
|
||||||
(function_arg,
|
(function_arg,
|
||||||
"",
|
"",
|
||||||
rtx, (const CUMULATIVE_ARGS *ca, enum machine_mode mode, const_tree type,
|
rtx, (CUMULATIVE_ARGS *ca, enum machine_mode mode, const_tree type,
|
||||||
bool named),
|
bool named),
|
||||||
default_function_arg)
|
default_function_arg)
|
||||||
|
|
||||||
@ -1798,7 +1798,7 @@ DEFHOOK_UNDOC
|
|||||||
DEFHOOK_UNDOC
|
DEFHOOK_UNDOC
|
||||||
(function_incoming_arg,
|
(function_incoming_arg,
|
||||||
"",
|
"",
|
||||||
rtx, (const CUMULATIVE_ARGS *ca, enum machine_mode mode, const_tree type,
|
rtx, (CUMULATIVE_ARGS *ca, enum machine_mode mode, const_tree type,
|
||||||
bool named),
|
bool named),
|
||||||
default_function_incoming_arg)
|
default_function_incoming_arg)
|
||||||
|
|
||||||
|
@ -568,28 +568,26 @@ default_function_arg_advance (CUMULATIVE_ARGS *ca ATTRIBUTE_UNUSED,
|
|||||||
}
|
}
|
||||||
|
|
||||||
rtx
|
rtx
|
||||||
default_function_arg (const CUMULATIVE_ARGS *ca ATTRIBUTE_UNUSED,
|
default_function_arg (CUMULATIVE_ARGS *ca ATTRIBUTE_UNUSED,
|
||||||
enum machine_mode mode ATTRIBUTE_UNUSED,
|
enum machine_mode mode ATTRIBUTE_UNUSED,
|
||||||
const_tree type ATTRIBUTE_UNUSED,
|
const_tree type ATTRIBUTE_UNUSED,
|
||||||
bool named ATTRIBUTE_UNUSED)
|
bool named ATTRIBUTE_UNUSED)
|
||||||
{
|
{
|
||||||
#ifdef FUNCTION_ARG
|
#ifdef FUNCTION_ARG
|
||||||
return FUNCTION_ARG (*(CONST_CAST (CUMULATIVE_ARGS *, ca)), mode,
|
return FUNCTION_ARG (*ca, mode, CONST_CAST_TREE (type), named);
|
||||||
CONST_CAST_TREE (type), named);
|
|
||||||
#else
|
#else
|
||||||
gcc_unreachable ();
|
gcc_unreachable ();
|
||||||
#endif
|
#endif
|
||||||
}
|
}
|
||||||
|
|
||||||
rtx
|
rtx
|
||||||
default_function_incoming_arg (const CUMULATIVE_ARGS *ca ATTRIBUTE_UNUSED,
|
default_function_incoming_arg (CUMULATIVE_ARGS *ca ATTRIBUTE_UNUSED,
|
||||||
enum machine_mode mode ATTRIBUTE_UNUSED,
|
enum machine_mode mode ATTRIBUTE_UNUSED,
|
||||||
const_tree type ATTRIBUTE_UNUSED,
|
const_tree type ATTRIBUTE_UNUSED,
|
||||||
bool named ATTRIBUTE_UNUSED)
|
bool named ATTRIBUTE_UNUSED)
|
||||||
{
|
{
|
||||||
#ifdef FUNCTION_INCOMING_ARG
|
#ifdef FUNCTION_INCOMING_ARG
|
||||||
return FUNCTION_INCOMING_ARG (*(CONST_CAST (CUMULATIVE_ARGS *, ca)), mode,
|
return FUNCTION_INCOMING_ARG (*ca, mode, CONST_CAST_TREE (type), named);
|
||||||
CONST_CAST_TREE (type), named);
|
|
||||||
#else
|
#else
|
||||||
gcc_unreachable ();
|
gcc_unreachable ();
|
||||||
#endif
|
#endif
|
||||||
|
@ -104,9 +104,9 @@ extern const char *hook_invalid_arg_for_unprototyped_fn
|
|||||||
extern void default_function_arg_advance
|
extern void default_function_arg_advance
|
||||||
(CUMULATIVE_ARGS *, enum machine_mode, const_tree, bool);
|
(CUMULATIVE_ARGS *, enum machine_mode, const_tree, bool);
|
||||||
extern rtx default_function_arg
|
extern rtx default_function_arg
|
||||||
(const CUMULATIVE_ARGS *, enum machine_mode, const_tree, bool);
|
(CUMULATIVE_ARGS *, enum machine_mode, const_tree, bool);
|
||||||
extern rtx default_function_incoming_arg
|
extern rtx default_function_incoming_arg
|
||||||
(const CUMULATIVE_ARGS *, enum machine_mode, const_tree, bool);
|
(CUMULATIVE_ARGS *, enum machine_mode, const_tree, bool);
|
||||||
extern bool hook_bool_const_rtx_commutative_p (const_rtx, int);
|
extern bool hook_bool_const_rtx_commutative_p (const_rtx, int);
|
||||||
extern rtx default_function_value (const_tree, const_tree, bool);
|
extern rtx default_function_value (const_tree, const_tree, bool);
|
||||||
extern rtx default_libcall_value (enum machine_mode, const_rtx);
|
extern rtx default_libcall_value (enum machine_mode, const_rtx);
|
||||||
|
Loading…
Reference in New Issue
Block a user