diff options
Diffstat (limited to 'gcc/hooks.c')
-rw-r--r-- | gcc/hooks.c | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/gcc/hooks.c b/gcc/hooks.c index 939ed844168..a8cd665a45f 100644 --- a/gcc/hooks.c +++ b/gcc/hooks.c @@ -1,5 +1,5 @@ /* General-purpose hooks. - Copyright (C) 2002, 2003 Free Software Foundation, Inc. + Copyright (C) 2002, 2003, 2004 Free Software Foundation, Inc. This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the @@ -177,6 +177,13 @@ hook_bool_rtx_false (rtx a ATTRIBUTE_UNUSED) } bool +hook_bool_uintp_uintp_false (unsigned int *a ATTRIBUTE_UNUSED, + unsigned int *b ATTRIBUTE_UNUSED) +{ + return false; +} + +bool hook_bool_rtx_int_int_intp_false (rtx a ATTRIBUTE_UNUSED, int b ATTRIBUTE_UNUSED, int c ATTRIBUTE_UNUSED, |