aboutsummaryrefslogtreecommitdiff
path: root/gcc/recog.c
diff options
context:
space:
mode:
authorRichard Sandiford <rdsandiford@googlemail.com>2014-06-04 17:34:19 +0000
committerRichard Sandiford <rsandifo@gcc.gnu.org>2014-06-04 17:34:19 +0000
commit5f2e0797aeb67a52d1b71859e054f55d1cd24ec7 (patch)
tree2d52f4da33819b6ccfd836b957991f7753751a0c /gcc/recog.c
parent5efe5dec7a9db46a8514e6a0e1ef9bacc38cd807 (diff)
downloadgcc-5f2e0797aeb67a52d1b71859e054f55d1cd24ec7.zip
gcc-5f2e0797aeb67a52d1b71859e054f55d1cd24ec7.tar.gz
gcc-5f2e0797aeb67a52d1b71859e054f55d1cd24ec7.tar.bz2
recog.c (preprocess_constraints): Don't skip disabled alternatives.
gcc/ * recog.c (preprocess_constraints): Don't skip disabled alternatives. * ira-lives.c (check_and_make_def_conflict): Check for disabled alternatives. (make_early_clobber_and_input_conflicts): Likewise. * config/i386/i386.c (ix86_legitimate_combined_insn): Likewise. From-SVN: r211239
Diffstat (limited to 'gcc/recog.c')
-rw-r--r--gcc/recog.c6
1 files changed, 0 insertions, 6 deletions
diff --git a/gcc/recog.c b/gcc/recog.c
index c4ab620..15e0752 100644
--- a/gcc/recog.c
+++ b/gcc/recog.c
@@ -2352,12 +2352,6 @@ preprocess_constraints (void)
op_alt[i].matches = -1;
op_alt[i].matched = -1;
- if (!TEST_BIT (recog_data.enabled_alternatives, j))
- {
- p = skip_alternative (p);
- continue;
- }
-
if (*p == '\0' || *p == ',')
{
op_alt[i].anything_ok = 1;