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

From-SVN: r96374
This commit is contained in:
Kazu Hirata 2005-03-13 15:55:32 +00:00 committed by Kazu Hirata
parent 30a6aaedd7
commit ed9cef2296
2 changed files with 3 additions and 2 deletions

View File

@ -23,6 +23,8 @@
* lambda-code.c (lambda_compute_auxillary_space): Remove local
variable determinant.
* tree-cfg.c (group_case_labels): Remove local variable type.
2005-03-13 Andy Hutchinson <HutchinsonAndy@netscape.net>
PR target/18251

View File

@ -1189,7 +1189,7 @@ group_case_labels (void)
i = 0;
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);
gcc_assert (base_case);
@ -1205,7 +1205,6 @@ group_case_labels (void)
continue;
}
type = TREE_TYPE (CASE_LOW (base_case));
base_high = CASE_HIGH (base_case) ?
CASE_HIGH (base_case) : CASE_LOW (base_case);
i++;