diff options
Diffstat (limited to 'gcc/config/m32c')
-rw-r--r-- | gcc/config/m32c/m32c.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/gcc/config/m32c/m32c.c b/gcc/config/m32c/m32c.c index ef0a311518c..83bf86c2071 100644 --- a/gcc/config/m32c/m32c.c +++ b/gcc/config/m32c/m32c.c @@ -454,6 +454,11 @@ m32c_option_override (void) This is always worse than an absolute call. */ if (TARGET_A16) flag_no_function_cse = 1; + + /* This wants to put insns between compares and their jumps. */ + /* FIXME: The right solution is to properly trace the flags register + values, but that is too much work for stage 4. */ + flag_combine_stack_adjustments = 0; } #undef TARGET_OVERRIDE_OPTIONS_AFTER_CHANGE |