Commit 2eac9a76 by Richard Guenther Committed by Richard Biener

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
parent 3a7b9fda
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
* tree-ssa-sccvn.c (vuses_to_vec): Pre-allocate the vector of
VOPs of the needed size to save memory. Use VEC_quick_push
......@@ -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;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment