(pushcase_range): [try to] properly apply previous patch of empty range test.

From-SVN: r13985
This commit is contained in:
Doug Evans 1997-04-26 05:14:45 +00:00
parent db5a46802c
commit 3c5d868350
1 changed files with 4 additions and 4 deletions

View File

@ -4410,10 +4410,6 @@ pushcase (value, converter, label, duplicate)
if (! (case_stack && case_stack->data.case_stmt.start))
return 1;
/* Fail if the range is empty. */
if (tree_int_cst_lt (value2, value1))
return 4;
if (stack_block_stack
&& stack_block_stack->depth > case_stack->depth)
return 5;
@ -4494,6 +4490,10 @@ pushcase_range (value1, value2, converter, label, duplicate)
if (! (case_stack && case_stack->data.case_stmt.start))
return 1;
/* Fail if the range is empty. */
if (tree_int_cst_lt (value2, value1))
return 4;
if (stack_block_stack
&& stack_block_stack->depth > case_stack->depth)
return 5;