1 --- a/gcc/config/rs6000/sysv4.h
2 +++ b/gcc/config/rs6000/sysv4.h
5 /* Define cutoff for using external functions to save floating point.
6 When optimizing for size, use external functions when profitable. */
7 -#define FP_SAVE_INLINE(FIRST_REG) (optimize_size \
8 +#define FP_SAVE_INLINE(FIRST_REG) (1 || (optimize_size \
10 || (FIRST_REG) == 63) \
12 + : (FIRST_REG) < 64))
13 /* And similarly for general purpose registers. */
14 -#define GP_SAVE_INLINE(FIRST_REG) ((FIRST_REG) < 32 \
16 +#define GP_SAVE_INLINE(FIRST_REG) (1 || ((FIRST_REG) < 32 \
19 /* Put jump tables in read-only memory, rather than in .text. */
20 #define JUMP_TABLES_IN_TEXT_SECTION 0