aboutsummaryrefslogtreecommitdiff
path: root/gcc/hooks.c
diff options
context:
space:
mode:
Diffstat (limited to 'gcc/hooks.c')
-rw-r--r--gcc/hooks.c8
1 files changed, 8 insertions, 0 deletions
diff --git a/gcc/hooks.c b/gcc/hooks.c
index c5371e9..1ceeef6 100644
--- a/gcc/hooks.c
+++ b/gcc/hooks.c
@@ -40,3 +40,11 @@ hook_tree_bool_false (a)
{
return false;
}
+
+/* Generic hook that takes (tree, int) and does nothing. */
+void
+hook_tree_int_void (a, b)
+ tree a ATTRIBUTE_UNUSED;
+ int b ATTRIBUTE_UNUSED;
+{
+}