diff options
author | Kazu Hirata <kazu@cs.umass.edu> | 2005-03-13 15:57:31 +0000 |
---|---|---|
committer | Kazu Hirata <kazu@gcc.gnu.org> | 2005-03-13 15:57:31 +0000 |
commit | 0b4961d01a6eee1c3969e2717ca3e5a375381b2c (patch) | |
tree | d17bba668940a7dab902023c4db1e0f0d40ec76b /gcc | |
parent | ed9cef2296539404a963836564a51d5931c4eb89 (diff) | |
download | gcc-0b4961d01a6eee1c3969e2717ca3e5a375381b2c.zip gcc-0b4961d01a6eee1c3969e2717ca3e5a375381b2c.tar.gz gcc-0b4961d01a6eee1c3969e2717ca3e5a375381b2c.tar.bz2 |
tree-ssa-live.c (build_tree_conflict_graph): Remove local variable ann.
* tree-ssa-live.c (build_tree_conflict_graph): Remove local
variable ann.
From-SVN: r96375
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/ChangeLog | 3 | ||||
-rw-r--r-- | gcc/tree-ssa-live.c | 2 |
2 files changed, 3 insertions, 2 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 920740d..73e8079 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -25,6 +25,9 @@ * tree-cfg.c (group_case_labels): Remove local variable type. + * tree-ssa-live.c (build_tree_conflict_graph): Remove local + variable ann. + 2005-03-13 Andy Hutchinson <HutchinsonAndy@netscape.net> PR target/18251 diff --git a/gcc/tree-ssa-live.c b/gcc/tree-ssa-live.c index 8d4912a..a4b4ab0 100644 --- a/gcc/tree-ssa-live.c +++ b/gcc/tree-ssa-live.c @@ -1323,10 +1323,8 @@ build_tree_conflict_graph (tree_live_info_p liveinfo, tpa_p tpa, { bool is_a_copy = false; tree stmt = bsi_stmt (bsi); - stmt_ann_t ann; get_stmt_operands (stmt); - ann = stmt_ann (stmt); /* A copy between 2 partitions does not introduce an interference by itself. If they did, you would never be able to coalesce |