* recog.h: Rename struct recog_data to Recog_data.
* recog.c: Likewise.
* reload.c (can_reload_into): Likewise.
* config/picochip/picochip.c: Likewise.
From-SVN: r198898
+2013-05-14 Mike Stump <mikestump@comcast.net>
+
+ * recog.h: Rename struct recog_data to Recog_data.
+ * recog.c: Likewise.
+ * reload.c (can_reload_into): Likewise.
+ * config/picochip/picochip.c: Likewise.
+
2013-05-14 Mike Stump <mikestump@comcast.net>
* web.c (union_match_dups): Also check DF_REF_REAL_LOC.
/* Save/restore recog_data. */
static int picochip_saved_which_alternative;
-static struct recog_data picochip_saved_recog_data;
+static struct Recog_data picochip_saved_recog_data;
/* Determine which ALU to use for the instruction in
picochip_current_prescan_insn. */
{
picochip_saved_which_alternative = which_alternative;
memcpy (&picochip_saved_recog_data, &recog_data,
- sizeof (struct recog_data));
+ sizeof (struct Recog_data));
}
/* Restore some of the contents of global variable recog_data. */
{
which_alternative = picochip_saved_which_alternative;
memcpy (&recog_data, &picochip_saved_recog_data,
- sizeof (struct recog_data));
+ sizeof (struct Recog_data));
}
/* Ensure that no var tracking notes are emitted in the middle of a
int volatile_ok;
-struct recog_data recog_data;
+struct Recog_data recog_data;
/* Contains a vector of operand_alternative structures for every operand.
Set up by preprocess_constraints. */
/* The following vectors hold the results from insn_extract. */
-struct recog_data
+struct Recog_data
{
/* It is very tempting to make the 5 operand related arrays into a
structure and index on that. However, to be source compatible
rtx insn;
};
-extern struct recog_data recog_data;
+extern struct Recog_data recog_data;
/* Contains a vector of operand_alternative structures for every operand.
Set up by preprocess_constraints. */
{
rtx dst, test_insn;
int r = 0;
- struct recog_data save_recog_data;
+ struct Recog_data save_recog_data;
/* For matching constraints, we often get notional input reloads where
we want to use the original register as the reload register. I.e.