Commit ed9cef22 by Kazu Hirata Committed by Kazu Hirata

* tree-cfg.c (group_case_labels): Remove local variable type.

From-SVN: r96374
parent 30a6aaed
...@@ -23,6 +23,8 @@ ...@@ -23,6 +23,8 @@
* lambda-code.c (lambda_compute_auxillary_space): Remove local * lambda-code.c (lambda_compute_auxillary_space): Remove local
variable determinant. variable determinant.
* tree-cfg.c (group_case_labels): Remove local variable type.
2005-03-13 Andy Hutchinson <HutchinsonAndy@netscape.net> 2005-03-13 Andy Hutchinson <HutchinsonAndy@netscape.net>
PR target/18251 PR target/18251
......
...@@ -1189,7 +1189,7 @@ group_case_labels (void) ...@@ -1189,7 +1189,7 @@ group_case_labels (void)
i = 0; i = 0;
while (i < old_size - 1) while (i < old_size - 1)
{ {
tree base_case, base_label, base_high, type; tree base_case, base_label, base_high;
base_case = TREE_VEC_ELT (labels, i); base_case = TREE_VEC_ELT (labels, i);
gcc_assert (base_case); gcc_assert (base_case);
...@@ -1205,7 +1205,6 @@ group_case_labels (void) ...@@ -1205,7 +1205,6 @@ group_case_labels (void)
continue; continue;
} }
type = TREE_TYPE (CASE_LOW (base_case));
base_high = CASE_HIGH (base_case) ? base_high = CASE_HIGH (base_case) ?
CASE_HIGH (base_case) : CASE_LOW (base_case); CASE_HIGH (base_case) : CASE_LOW (base_case);
i++; i++;
......
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