aboutsummaryrefslogtreecommitdiff
path: root/gcc/hooks.c
diff options
context:
space:
mode:
Diffstat (limited to 'gcc/hooks.c')
-rw-r--r--gcc/hooks.c10
1 files changed, 9 insertions, 1 deletions
diff --git a/gcc/hooks.c b/gcc/hooks.c
index 3f212ef3e1b..36d7b2f4587 100644
--- a/gcc/hooks.c
+++ b/gcc/hooks.c
@@ -1,5 +1,5 @@
/* General-purpose hooks.
- Copyright (C) 2002 Free Software Foundation, Inc.
+ Copyright (C) 2002, 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
@@ -121,3 +121,11 @@ hook_bool_rtx_false (a)
{
return false;
}
+
+bool
+hook_bool_uintp_uintp_false (a, b)
+ unsigned int *a ATTRIBUTE_UNUSED;
+ unsigned int *b ATTRIBUTE_UNUSED;
+{
+ return false;
+}