aboutsummaryrefslogtreecommitdiff
path: root/gcc/recog.h
diff options
context:
space:
mode:
authorRichard Sandiford <richard.sandiford@arm.com>2014-10-22 12:02:39 +0000
committerRichard Sandiford <rsandifo@gcc.gnu.org>2014-10-22 12:02:39 +0000
commit795693c185eddff2b83be4b194da5e016f0717b0 (patch)
treeb7cd2ba7a91faabe34b29f9c0625cefcfece59a2 /gcc/recog.h
parentdaca1a96afae35e1a2f39b91f014c2f414f70c5f (diff)
downloadgcc-795693c185eddff2b83be4b194da5e016f0717b0.zip
gcc-795693c185eddff2b83be4b194da5e016f0717b0.tar.gz
gcc-795693c185eddff2b83be4b194da5e016f0717b0.tar.bz2
recog.h (recog_data_d): Remove enabled_alternatives.
gcc/ * recog.h (recog_data_d): Remove enabled_alternatives. * recog.c (extract_insn): Don't set it. * reload.c (find_reloads): Call get_enabled_alternatives. From-SVN: r216556
Diffstat (limited to 'gcc/recog.h')
-rw-r--r--gcc/recog.h6
1 files changed, 0 insertions, 6 deletions
diff --git a/gcc/recog.h b/gcc/recog.h
index c91f661..0802640 100644
--- a/gcc/recog.h
+++ b/gcc/recog.h
@@ -250,12 +250,6 @@ struct recog_data_d
/* True if insn is ASM_OPERANDS. */
bool is_asm;
- /* Specifies whether an insn alternative is enabled using the `enabled'
- attribute in the insn pattern definition. For back ends not using
- the `enabled' attribute the bits are always set to 1 in expand_insn.
- Bits beyond the last alternative are also set to 1. */
- alternative_mask enabled_alternatives;
-
/* In case we are caching, hold insn data was generated for. */
rtx insn;
};