diff options
Diffstat (limited to 'gcc/regrename.c')
-rw-r--r-- | gcc/regrename.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/gcc/regrename.c b/gcc/regrename.c index 9b7dfd6d3c5..dce0e898751 100644 --- a/gcc/regrename.c +++ b/gcc/regrename.c @@ -22,6 +22,8 @@ #include "config.h" #include "system.h" +#include "coretypes.h" +#include "tm.h" #include "rtl.h" #include "tm_p.h" #include "insn-config.h" @@ -1328,7 +1330,7 @@ mode_change_ok (orig_mode, new_mode, regno) static rtx maybe_mode_change (orig_mode, copy_mode, new_mode, regno, copy_regno) enum machine_mode orig_mode, copy_mode, new_mode; - unsigned int regno, copy_regno; + unsigned int regno, copy_regno ATTRIBUTE_UNUSED; { if (orig_mode == new_mode) return gen_rtx_raw_REG (new_mode, regno); |