From: Richard Guenther Date: Mon, 7 Jan 2008 16:49:37 +0000 (+0000) Subject: basic-block.h (struct edge_def): Pair dest_idx with goto_locus fields. X-Git-Tag: releases/gcc-4.3.0~711 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=2eac9a765c07d55499a32f7e8bbd76440969665a;p=thirdparty%2Fgcc.git basic-block.h (struct edge_def): Pair dest_idx with goto_locus fields. 2008-01-07 Richard Guenther * basic-block.h (struct edge_def): Pair dest_idx with goto_locus fields. From-SVN: r131378 --- diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 4ec6bff6fa5d..5ea6017d2e07 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,8 @@ +2008-01-07 Richard Guenther + + * basic-block.h (struct edge_def): Pair dest_idx with goto_locus + fields. + 2008-01-07 Richard Guenther PR tree-optimization/34683 diff --git a/gcc/basic-block.h b/gcc/basic-block.h index eb719ca26e01..1a678a97d4ba 100644 --- a/gcc/basic-block.h +++ b/gcc/basic-block.h @@ -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;