diff options
author | hubicka <hubicka@138bc75d-0d04-0410-961f-82ee72b054a4> | 2005-07-30 22:14:17 +0000 |
---|---|---|
committer | hubicka <hubicka@138bc75d-0d04-0410-961f-82ee72b054a4> | 2005-07-30 22:14:17 +0000 |
commit | a2b1a05e75a0d5a6120792e12392ff3624eef95f (patch) | |
tree | 90c26e80fc63e94c4779d3d07c7d2bf90e51f41c /gcc/tree-ssa-live.h | |
parent | a5711a804a26e1af1cb1a1fe380aff8ae3ec1d48 (diff) | |
download | gcc-a2b1a05e75a0d5a6120792e12392ff3624eef95f.tar.gz |
* tree-outof-ssa.c (coalesce_ssa_name): Use coalesce_cost.
(coalesce_vars): Likewise.
* tree-ssa-live.c (coalesce_cost): New.
(build_tree_conflict_graph): Use coalesce_cost.
* tree-ssa-live.h (coalesce_cost): Declare.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@102593 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/tree-ssa-live.h')
-rw-r--r-- | gcc/tree-ssa-live.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/gcc/tree-ssa-live.h b/gcc/tree-ssa-live.h index d8711c0f419..2c4127402fa 100644 --- a/gcc/tree-ssa-live.h +++ b/gcc/tree-ssa-live.h @@ -700,6 +700,7 @@ typedef struct coalesce_list_d extern coalesce_list_p create_coalesce_list (var_map); extern void add_coalesce (coalesce_list_p, int, int, int); +extern int coalesce_cost (int, bool, bool); extern void sort_coalesce_list (coalesce_list_p); extern void dump_coalesce_list (FILE *, coalesce_list_p); extern void delete_coalesce_list (coalesce_list_p); |