]> gcc.gnu.org Git - gcc.git/commitdiff
expmed.c (init_expmed_rtl): Remove unused fields reg_fld...
authorGraham Stott <grahams@btinternet.com>
Mon, 6 May 2013 22:26:53 +0000 (22:26 +0000)
committerGraham Stott <grahams@gcc.gnu.org>
Mon, 6 May 2013 22:26:53 +0000 (22:26 +0000)
2013-05-06  Graham Stott  <grahams@btinternet.com>

        * expmed.c (init_expmed_rtl): Remove unused fields reg_fld, plus_fld,
        mult_fld, sdiv_fld1, udiv_fld1, sdiv_32_fld1, smod_32_fld1,
        wide_mult_fld1, wide_lshr_fld1, shift_fld1, shift_mult_fld1,
        shift_add_fld1, shift_sub0_fld1, shift_sub1_fld1.

From-SVN: r198654

gcc/ChangeLog
gcc/expmed.c

index 6bb5c2b4fbae7a2afb67a2b912e97e8dd1fe6b43..47675e58cbc163ab8c355c4b155d408432a9a3f4 100644 (file)
@@ -1,4 +1,11 @@
-013-05-06  Graham Stott  <grahams@btinternet.com>
+2013-05-06  Graham Stott  <grahams@btinternet.com>
+
+       * expmed.c (init_expmed_rtl): Remove unused fields reg_fld, plus_fld,
+       mult_fld, sdiv_fld1, udiv_fld1, sdiv_32_fld1, smod_32_fld1,
+       wide_mult_fld1, wide_lshr_fld1, shift_fld1, shift_mult_fld1,
+       shift_add_fld1, shift_sub0_fld1, shift_sub1_fld1.
+
+2013-05-06  Graham Stott  <grahams@btinternet.com>
 
        * gensupport.c (add_predicate_code): Also exclude SCRATCH from rtx
        codes which allow non-lvalues.
index 3c3a179701fbc2832d19ce994d3806be909d8823..3910612da013379f8dc59ba66f9850f5b5574528 100644 (file)
@@ -69,22 +69,22 @@ static rtx expand_sdiv_pow2 (enum machine_mode, rtx, HOST_WIDE_INT);
 
 struct init_expmed_rtl
 {
-  struct rtx_def reg;          rtunion reg_fld[2];
-  struct rtx_def plus; rtunion plus_fld1;
+  struct rtx_def reg;
+  struct rtx_def plus;
   struct rtx_def neg;
-  struct rtx_def mult; rtunion mult_fld1;
-  struct rtx_def sdiv; rtunion sdiv_fld1;
-  struct rtx_def udiv; rtunion udiv_fld1;
-  struct rtx_def sdiv_32;      rtunion sdiv_32_fld1;
-  struct rtx_def smod_32;      rtunion smod_32_fld1;
-  struct rtx_def wide_mult;    rtunion wide_mult_fld1;
-  struct rtx_def wide_lshr;    rtunion wide_lshr_fld1;
+  struct rtx_def mult;
+  struct rtx_def sdiv;
+  struct rtx_def udiv;
+  struct rtx_def sdiv_32;
+  struct rtx_def smod_32;
+  struct rtx_def wide_mult;
+  struct rtx_def wide_lshr;
   struct rtx_def wide_trunc;
-  struct rtx_def shift;        rtunion shift_fld1;
-  struct rtx_def shift_mult;   rtunion shift_mult_fld1;
-  struct rtx_def shift_add;    rtunion shift_add_fld1;
-  struct rtx_def shift_sub0;   rtunion shift_sub0_fld1;
-  struct rtx_def shift_sub1;   rtunion shift_sub1_fld1;
+  struct rtx_def shift;
+  struct rtx_def shift_mult;
+  struct rtx_def shift_add;
+  struct rtx_def shift_sub0;
+  struct rtx_def shift_sub1;
   struct rtx_def zext;
   struct rtx_def trunc;
 
This page took 0.073391 seconds and 5 git commands to generate.