diff options
Diffstat (limited to 'gcc/config/m32r/m32r.h')
-rw-r--r-- | gcc/config/m32r/m32r.h | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/gcc/config/m32r/m32r.h b/gcc/config/m32r/m32r.h index beef7c9d395..b4c9ae6f4b9 100644 --- a/gcc/config/m32r/m32r.h +++ b/gcc/config/m32r/m32r.h @@ -1267,10 +1267,7 @@ L2: .word STATIC #define GO_IF_MODE_DEPENDENT_ADDRESS(ADDR, LABEL) \ do \ { \ - if ( GET_CODE (ADDR) == PRE_DEC \ - || GET_CODE (ADDR) == PRE_INC \ - || GET_CODE (ADDR) == POST_INC \ - || GET_CODE (ADDR) == LO_SUM) \ + if (GET_CODE (ADDR) == LO_SUM) \ goto LABEL; \ } \ while (0) |