diff options
author | bstarynk <bstarynk@138bc75d-0d04-0410-961f-82ee72b054a4> | 2008-09-01 07:29:23 +0000 |
---|---|---|
committer | bstarynk <bstarynk@138bc75d-0d04-0410-961f-82ee72b054a4> | 2008-09-01 07:29:23 +0000 |
commit | d5e0534e64b525e8dca8e2fa05455011031c643a (patch) | |
tree | 61d274e19b123144c2895546960a996641555928 /gcc/hooks.c | |
parent | a30fe044170c44da9e441535e2167ca8e885b3cb (diff) | |
download | gcc-d5e0534e64b525e8dca8e2fa05455011031c643a.tar.gz |
2008-09-01 Basile Starynkevitch <basile@starynkevitch.net>
MELT branch merged with trunk r139848
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/branches/melt-branch@139851 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/hooks.c')
-rw-r--r-- | gcc/hooks.c | 15 |
1 files changed, 11 insertions, 4 deletions
diff --git a/gcc/hooks.c b/gcc/hooks.c index 50761b69ca5..04dbd3eab2a 100644 --- a/gcc/hooks.c +++ b/gcc/hooks.c @@ -154,6 +154,12 @@ hook_int_rtx_0 (rtx a ATTRIBUTE_UNUSED) } int +hook_int_rtx_bool_0 (rtx a ATTRIBUTE_UNUSED, bool b ATTRIBUTE_UNUSED) +{ + return 0; +} + +int hook_int_size_t_constcharptr_int_0 (size_t a ATTRIBUTE_UNUSED, const char *b ATTRIBUTE_UNUSED, int c ATTRIBUTE_UNUSED) @@ -233,10 +239,11 @@ hook_bool_uintp_uintp_false (unsigned int *a ATTRIBUTE_UNUSED, } bool -hook_bool_rtx_int_int_intp_false (rtx a ATTRIBUTE_UNUSED, - int b ATTRIBUTE_UNUSED, - int c ATTRIBUTE_UNUSED, - int *d ATTRIBUTE_UNUSED) +hook_bool_rtx_int_int_intp_bool_false (rtx a ATTRIBUTE_UNUSED, + int b ATTRIBUTE_UNUSED, + int c ATTRIBUTE_UNUSED, + int *d ATTRIBUTE_UNUSED, + bool speed_p ATTRIBUTE_UNUSED) { return false; } |