]> git.ipfire.org Git - thirdparty/gcc.git/commitdiff
recog.h: Rename struct recog_data to Recog_data.
authorMike Stump <mikestump@comcast.net>
Tue, 14 May 2013 19:09:29 +0000 (19:09 +0000)
committerMike Stump <mrs@gcc.gnu.org>
Tue, 14 May 2013 19:09:29 +0000 (19:09 +0000)
* 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

gcc/ChangeLog
gcc/config/picochip/picochip.c
gcc/recog.c
gcc/recog.h
gcc/reload.c

index 62255a36537407121159b162da9ab6b98e746afc..0f92b30cc1de9423b76247d91d6c7d560b31fbd7 100644 (file)
@@ -1,3 +1,10 @@
+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.
index b948ffd1ee6971835400491b5e473d8a0c795c87..56722fa016ce2c48d5124cb93091c9963431b8ba 100644 (file)
@@ -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
index 75d1113fcfbbd04459c941a0010e57469bc0f068..dad7ee0dfb21a6360e9a119f64d31bf4626e47e3 100644 (file)
@@ -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.  */
index 67ad0f70d33d3a6131358bc39ae89d4e388d9c2b..1bb0738b46fd9128715ceb921bb80a0f0456168b 100644 (file)
@@ -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.  */
index 2546c1b4ecaae7468508c960574a64a2da818f51..959d143b8766dbdeb29bc2ea5d7df06ade44d2b0 100644 (file)
@@ -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.