diff options
author | Richard Sandiford <rdsandiford@googlemail.com> | 2014-06-11 16:58:43 +0000 |
---|---|---|
committer | Richard Sandiford <rsandifo@gcc.gnu.org> | 2014-06-11 16:58:43 +0000 |
commit | 3c4c42e826b61d7b99e6be965dd1187784d2228c (patch) | |
tree | 973a3ce0efa709d52259fede89af828768a8198a /gcc/recog.c | |
parent | 777e635f1a6cab5d2c6837b1ea903ed0bcbe87d3 (diff) | |
download | gcc-3c4c42e826b61d7b99e6be965dd1187784d2228c.zip gcc-3c4c42e826b61d7b99e6be965dd1187784d2228c.tar.gz gcc-3c4c42e826b61d7b99e6be965dd1187784d2228c.tar.bz2 |
recog.h (operand_alternative): Remove offmem_ok, nonffmem_ok, decmem_ok and incmem_ok.
gcc/
* recog.h (operand_alternative): Remove offmem_ok, nonffmem_ok,
decmem_ok and incmem_ok. Reformat other bitfields for consistency.
* recog.c (preprocess_constraints): Update accordingly.
From-SVN: r211472
Diffstat (limited to 'gcc/recog.c')
-rw-r--r-- | gcc/recog.c | 12 |
1 files changed, 0 insertions, 12 deletions
diff --git a/gcc/recog.c b/gcc/recog.c index 94cdeec..9d9fa77 100644 --- a/gcc/recog.c +++ b/gcc/recog.c @@ -2415,18 +2415,6 @@ preprocess_constraints (int n_operands, int n_alternatives, case TARGET_MEM_CONSTRAINT: op_alt[i].memory_ok = 1; break; - case '<': - op_alt[i].decmem_ok = 1; - break; - case '>': - op_alt[i].incmem_ok = 1; - break; - case 'V': - op_alt[i].nonoffmem_ok = 1; - break; - case 'o': - op_alt[i].offmem_ok = 1; - break; case 'X': op_alt[i].anything_ok = 1; break; |