diff options
author | nathan <nathan@138bc75d-0d04-0410-961f-82ee72b054a4> | 2008-07-07 11:16:11 +0000 |
---|---|---|
committer | nathan <nathan@138bc75d-0d04-0410-961f-82ee72b054a4> | 2008-07-07 11:16:11 +0000 |
commit | 33be53f9aac81af8d43337bd00bf2d696a34b11e (patch) | |
tree | c4441b137be42ff5eae0ea22740896695e0eac0d /gcc/config | |
parent | fe0647d925a222a8d86278583e7b531b2c5f78af (diff) | |
download | gcc-33be53f9aac81af8d43337bd00bf2d696a34b11e.tar.gz |
* config/m68k/m68k.c (m68k_return_in_memory): Fix arguments types.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@137559 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/config')
-rw-r--r-- | gcc/config/m68k/m68k.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/config/m68k/m68k.c b/gcc/config/m68k/m68k.c index 046132088bc..1853073af81 100644 --- a/gcc/config/m68k/m68k.c +++ b/gcc/config/m68k/m68k.c @@ -148,7 +148,7 @@ static bool m68k_save_reg (unsigned int regno, bool interrupt_handler); static bool m68k_ok_for_sibcall_p (tree, tree); static bool m68k_rtx_costs (rtx, int, int, int *); #if M68K_HONOR_TARGET_STRICT_ALIGNMENT -static bool m68k_return_in_memory (tree, tree); +static bool m68k_return_in_memory (const_tree, const_tree); #endif @@ -4627,7 +4627,7 @@ m68k_function_value (const_tree valtype, const_tree func ATTRIBUTE_UNUSED) /* Worker function for TARGET_RETURN_IN_MEMORY. */ #if M68K_HONOR_TARGET_STRICT_ALIGNMENT static bool -m68k_return_in_memory (tree type, tree fntype ATTRIBUTE_UNUSED) +m68k_return_in_memory (const_tree type, const_tree fntype ATTRIBUTE_UNUSED) { enum machine_mode mode = TYPE_MODE (type); |