diff options
author | Laurynas Biveinis <laurynas.biveinis@gmail.com> | 2010-12-03 04:58:47 +0000 |
---|---|---|
committer | Laurynas Biveinis <lauras@gcc.gnu.org> | 2010-12-03 04:58:47 +0000 |
commit | fba4cb03e98178b65d41dcce32a1233358596132 (patch) | |
tree | b5eacb7d19ea31e3b1f6dae031254bd95f59aeb7 /gcc/tree-flow.h | |
parent | 2e3331995e674fd5b4e7d370ec3bad48e9d8e8f1 (diff) | |
download | gcc-fba4cb03e98178b65d41dcce32a1233358596132.zip gcc-fba4cb03e98178b65d41dcce32a1233358596132.tar.gz gcc-fba4cb03e98178b65d41dcce32a1233358596132.tar.bz2 |
basic-block.h (struct edge_prediction): Remove forward declaration.
2010-12-01 Laurynas Biveinis <laurynas.biveinis@gmail.com>
* basic-block.h (struct edge_prediction): Remove forward
declaration.
* tree-flow.h (struct edge_prediction): Move from here...
* predict.c (struct edge_prediction): ...to here.
* cselib.h (struct elt_list): Move from here...
* cselib.c (struct elt_list): ...to here.
From-SVN: r167409
Diffstat (limited to 'gcc/tree-flow.h')
-rw-r--r-- | gcc/tree-flow.h | 10 |
1 files changed, 0 insertions, 10 deletions
diff --git a/gcc/tree-flow.h b/gcc/tree-flow.h index 1486e33..682907c 100644 --- a/gcc/tree-flow.h +++ b/gcc/tree-flow.h @@ -286,16 +286,6 @@ static inline var_ann_t get_var_ann (tree); static inline void update_stmt (gimple); static inline int get_lineno (const_gimple); -/*--------------------------------------------------------------------------- - Structure representing predictions in tree level. ----------------------------------------------------------------------------*/ -struct edge_prediction { - struct edge_prediction *ep_next; - edge ep_edge; - enum br_predictor ep_predictor; - int ep_probability; -}; - /* Accessors for basic block annotations. */ static inline gimple_seq phi_nodes (const_basic_block); static inline void set_phi_nodes (basic_block, gimple_seq); |