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

2008-01-07  Richard Guenther  <rguenther@suse.de>

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

From-SVN: r131378
This commit is contained in:
Richard Guenther 2008-01-07 16:49:37 +00:00 committed by Richard Biener
parent 3a7b9fdaf6
commit 2eac9a765c
2 changed files with 9 additions and 4 deletions

View 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

View 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;