This is the mail archive of the gcc-patches@gcc.gnu.org mailing list for the GCC project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

[commited] Remove ephi_nodes from bb_ann_d


Obviously unused.

Index: ChangeLog
===================================================================
RCS file: /cvs/gcc/gcc/gcc/ChangeLog,v
retrieving revision 2.4261
diff -c -3 -p -r2.4261 ChangeLog
*** ChangeLog	2 Jul 2004 06:31:27 -0000	2.4261
--- ChangeLog	2 Jul 2004 07:33:41 -0000
***************
*** 1,3 ****
--- 1,7 ----
+ 2004-07-02  Steven Bosscher  <stevenb@suse.de>
+ 
+ 	* tree-flow.h (bb_ann_d): Remove ephi_nodes field.
+ 
  2004-07-01  Richard Henderson  <rth@redhat.com>
  
  	* config/alpha/alpha.c (struct machine_function): Add gp_save_rtx.
Index: tree-flow.h
===================================================================
RCS file: /cvs/gcc/gcc/gcc/tree-flow.h,v
retrieving revision 2.17
diff -c -3 -p -r2.17 tree-flow.h
*** tree-flow.h	30 Jun 2004 21:28:59 -0000	2.17
--- tree-flow.h	2 Jul 2004 07:33:42 -0000
*************** struct bb_ann_d GTY(())
*** 352,360 ****
    /* Chain of PHI nodes for this block.  */
    tree phi_nodes;
  
-   /* Chain of EPHI nodes created in this block.  */
-   tree ephi_nodes;
-   
    /* Number of predecessors for this block.  This is only valid during
       SSA rewriting.  It is not maintained after conversion into SSA form.  */
    int num_preds;
--- 352,357 ----


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]