diff options
Diffstat (limited to 'gcc/hooks.c')
-rw-r--r-- | gcc/hooks.c | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/gcc/hooks.c b/gcc/hooks.c index 65b9fe5..44ebd6f 100644 --- a/gcc/hooks.c +++ b/gcc/hooks.c @@ -495,3 +495,12 @@ hook_bool_reg_class_t_false (reg_class_t regclass ATTRIBUTE_UNUSED) return false; } +/* Generic hook that takes a machine_mode and 2 register classes + and returns false. */ +bool +hook_bool_mode_reg_class_t_reg_class_t_false (machine_mode, reg_class_t, + reg_class_t) +{ + return false; +} + |