]> git.ipfire.org Git - thirdparty/gcc.git/commitdiff
basic-block.h (struct edge_def): Pair dest_idx with goto_locus fields.
authorRichard Guenther <rguenther@suse.de>
Mon, 7 Jan 2008 16:49:37 +0000 (16:49 +0000)
committerRichard Biener <rguenth@gcc.gnu.org>
Mon, 7 Jan 2008 16:49:37 +0000 (16:49 +0000)
2008-01-07  Richard Guenther  <rguenther@suse.de>

        * basic-block.h (struct edge_def): Pair dest_idx with goto_locus
        fields.

From-SVN: r131378

gcc/ChangeLog
gcc/basic-block.h

index 4ec6bff6fa5d7533092b1ca0a5272196490cf08c..5ea6017d2e07bde53006119a42f51df94877037e 100644 (file)
@@ -1,3 +1,8 @@
+2008-01-07  Richard Guenther  <rguenther@suse.de>
+
+       * basic-block.h (struct edge_def): Pair dest_idx with goto_locus
+       fields.
+
 2008-01-07  Richard Guenther  <rguenther@suse.de>
 
        PR tree-optimization/34683
index eb719ca26e016801ccbcb5e870ed109ddf8f5122..1a678a97d4bac205b831046ea17333f8697b184d 100644 (file)
@@ -132,14 +132,14 @@ struct edge_def GTY(())
   /* Location of any goto implicit in the edge, during tree-ssa.  */
   source_locus goto_locus;
 
+  /* The index number corresponding to this edge in the edge vector
+     dest->preds.  */
+  unsigned int dest_idx;
+
   int flags;                   /* see EDGE_* below  */
   int probability;             /* biased by REG_BR_PROB_BASE */
   gcov_type count;             /* Expected number of executions calculated
                                   in profile.c  */
-
-  /* The index number corresponding to this edge in the edge vector
-     dest->preds.  */
-  unsigned int dest_idx;
 };
 
 typedef struct edge_def *edge;