OSDN Git Service

* hooks.c (hook_int_void_1): New generic hook.
[pf3gnuchains/gcc-fork.git] / gcc / hooks.c
index e37d58e..1fafe1f 100644 (file)
@@ -48,6 +48,13 @@ hook_int_void_no_regs (void)
   return NO_REGS;
 }
 
+/* Generic hook that returns 1.  */
+int
+hook_int_void_1 (void)
+{
+  return 1;
+}
+
 /* Generic hook that takes (bool) and returns false.  */
 bool
 hook_bool_bool_false (bool a ATTRIBUTE_UNUSED)