diff options
Diffstat (limited to 'gcc/hooks.c')
-rw-r--r-- | gcc/hooks.c | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/gcc/hooks.c b/gcc/hooks.c index 90251834e4e..1ba44f9c7bb 100644 --- a/gcc/hooks.c +++ b/gcc/hooks.c @@ -161,6 +161,13 @@ default_can_output_mi_thunk_no_vcall (const_tree a ATTRIBUTE_UNUSED, } int +hook_int_uint_mode_1 (unsigned int a ATTRIBUTE_UNUSED, + enum machine_mode b ATTRIBUTE_UNUSED) +{ + return 1; +} + +int hook_int_const_tree_0 (const_tree a ATTRIBUTE_UNUSED) { return 0; |