diff options
author | mrs <mrs@138bc75d-0d04-0410-961f-82ee72b054a4> | 2013-05-14 19:09:29 +0000 |
---|---|---|
committer | mrs <mrs@138bc75d-0d04-0410-961f-82ee72b054a4> | 2013-05-14 19:09:29 +0000 |
commit | 31beb4cd07b2d1690ade737a693aff49f1e44f4e (patch) | |
tree | 7c360c40c2532bd524874cbebac12b57b77f0130 /gcc | |
parent | 14d27f18c183419b025659c0ea26a1f20ad112a6 (diff) | |
download | gcc-31beb4cd07b2d1690ade737a693aff49f1e44f4e.tar.gz |
* recog.h: Rename struct recog_data to Recog_data.
* recog.c: Likewise.
* reload.c (can_reload_into): Likewise.
* config/picochip/picochip.c: Likewise.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@198898 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/ChangeLog | 7 | ||||
-rw-r--r-- | gcc/config/picochip/picochip.c | 6 | ||||
-rw-r--r-- | gcc/recog.c | 2 | ||||
-rw-r--r-- | gcc/recog.h | 4 | ||||
-rw-r--r-- | gcc/reload.c | 2 |
5 files changed, 14 insertions, 7 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 62255a36537..0f92b30cc1d 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,5 +1,12 @@ 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. 2013-05-14 Steven Bosscher <steven@gcc.gnu.org> diff --git a/gcc/config/picochip/picochip.c b/gcc/config/picochip/picochip.c index b948ffd1ee6..56722fa016c 100644 --- a/gcc/config/picochip/picochip.c +++ b/gcc/config/picochip/picochip.c @@ -187,7 +187,7 @@ struct vliw_state picochip_current_vliw_state; /* 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. */ @@ -3150,7 +3150,7 @@ picochip_save_recog_data (void) { 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. */ @@ -3159,7 +3159,7 @@ picochip_restore_recog_data (void) { 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 diff --git a/gcc/recog.c b/gcc/recog.c index 75d1113fcfb..dad7ee0dfb2 100644 --- a/gcc/recog.c +++ b/gcc/recog.c @@ -70,7 +70,7 @@ static rtx split_insn (rtx); 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. */ diff --git a/gcc/recog.h b/gcc/recog.h index 67ad0f70d33..1bb0738b46f 100644 --- a/gcc/recog.h +++ b/gcc/recog.h @@ -179,7 +179,7 @@ extern int which_alternative; /* 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 @@ -245,7 +245,7 @@ struct recog_data 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. */ diff --git a/gcc/reload.c b/gcc/reload.c index 2546c1b4eca..959d143b876 100644 --- a/gcc/reload.c +++ b/gcc/reload.c @@ -895,7 +895,7 @@ can_reload_into (rtx in, int regno, enum machine_mode mode) { 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. |