diff options
Diffstat (limited to 'gcc/config/vax/vax.c')
| -rw-r--r-- | gcc/config/vax/vax.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/config/vax/vax.c b/gcc/config/vax/vax.c index f005a2a4c0d..5ce9ad370ab 100644 --- a/gcc/config/vax/vax.c +++ b/gcc/config/vax/vax.c @@ -1306,8 +1306,8 @@ vax_mode_dependent_address_p (rtx x) { rtx xfoo0, xfoo1; - if (GET_CODE (x) == POST_INC || GET_CODE (x) == PRE_DEC) - return 1; + /* Auto-increment cases are now dealt with generically in recog.c. */ + if (GET_CODE (x) != PLUS) return 0; |

