diff options
Diffstat (limited to 'gcc/hooks.c')
-rw-r--r-- | gcc/hooks.c | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/gcc/hooks.c b/gcc/hooks.c index a80ead0..5911716 100644 --- a/gcc/hooks.c +++ b/gcc/hooks.c @@ -131,3 +131,14 @@ hook_bool_rtx_false (a) { return false; } + +bool +hook_bool_rtx_int_int_intp_false (a, b, c, d) + rtx a ATTRIBUTE_UNUSED; + int b ATTRIBUTE_UNUSED; + int c ATTRIBUTE_UNUSED; + int *d ATTRIBUTE_UNUSED; +{ + return false; +} + |