summaryrefslogtreecommitdiff
path: root/gcc/genautomata.c
diff options
context:
space:
mode:
authorvmakarov <vmakarov@138bc75d-0d04-0410-961f-82ee72b054a4>2003-04-29 22:46:54 +0000
committervmakarov <vmakarov@138bc75d-0d04-0410-961f-82ee72b054a4>2003-04-29 22:46:54 +0000
commitc9407b733caacb8c93d3df7709bb42e8b923bf17 (patch)
treeb4d89e04d4670d1736b23b0b5d57a80b5b663b9f /gcc/genautomata.c
parente9b19591088589374967ef476d096c9a7235c5eb (diff)
downloadgcc-c9407b733caacb8c93d3df7709bb42e8b923bf17.tar.gz
2003-04-29 Vladimir Makarov <vmakarov@redhat.com>
* genautomata.c (add_vect): Check undefined value for range type too. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@66266 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/genautomata.c')
-rw-r--r--gcc/genautomata.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/gcc/genautomata.c b/gcc/genautomata.c
index 438bdefaa27..7b2f05b9e1f 100644
--- a/gcc/genautomata.c
+++ b/gcc/genautomata.c
@@ -7885,6 +7885,10 @@ add_vect (tab, vect_num, vect, vect_length)
tab->min_comb_vect_el_value = vect [vect_index];
check_vect_start [comb_vect_index + vect_index] = vect_num;
}
+ if (tab->max_comb_vect_el_value < undefined_vect_el_value)
+ tab->max_comb_vect_el_value = undefined_vect_el_value;
+ if (tab->min_comb_vect_el_value > undefined_vect_el_value)
+ tab->min_comb_vect_el_value = undefined_vect_el_value;
if (tab->max_base_vect_el_value < comb_vect_index)
tab->max_base_vect_el_value = comb_vect_index;
if (tab->min_base_vect_el_value > comb_vect_index)