diff options
Diffstat (limited to 'gcc/defaults.h')
-rw-r--r-- | gcc/defaults.h | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/gcc/defaults.h b/gcc/defaults.h index ea5ff804897..566841b532b 100644 --- a/gcc/defaults.h +++ b/gcc/defaults.h @@ -1484,6 +1484,16 @@ gen_load_multiple (rtx, rtx, rtx) } #endif +#ifndef HAVE_store_multiple +#define HAVE_store_multiple 0 +static inline rtx +gen_store_multiple (rtx, rtx, rtx) +{ + gcc_unreachable (); + return NULL; +} +#endif + #endif /* GCC_INSN_FLAGS_H */ #endif /* ! GCC_DEFAULTS_H */ |