From: Vladimir Makarov Date: Mon, 6 May 2002 20:14:32 +0000 (+0000) Subject: genautomata.c (form_the_same_automaton_unit_lists_from_regexp): Fix typo in usage... X-Git-Tag: releases/gcc-3.3.0~5221 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=83e0be551cb062251cbdd8588214006f19bae3b7;p=thirdparty%2Fgcc.git genautomata.c (form_the_same_automaton_unit_lists_from_regexp): Fix typo in usage of allof instead of unit. 2002-05-06 Vladimir Makarov * genautomata.c (form_the_same_automaton_unit_lists_from_regexp): Fix typo in usage of allof instead of unit. From-SVN: r53235 --- diff --git a/gcc/ChangeLog b/gcc/ChangeLog index f18175314856..00084d7b08d3 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,8 @@ +2002-05-06 Vladimir Makarov + + * genautomata.c (form_the_same_automaton_unit_lists_from_regexp): + Fix typo in usage of allof instead of unit. + 2002-05-06 Richard Henderson * recog.c (if_test_bypass_p): Accept multiple set insns for OUT, diff --git a/gcc/genautomata.c b/gcc/genautomata.c index 486ed63a827d..7b4dc1623a70 100644 --- a/gcc/genautomata.c +++ b/gcc/genautomata.c @@ -4924,7 +4924,7 @@ form_the_same_automaton_unit_lists_from_regexp (regexp) if (unit->mode == rm_unit) process_unit_to_form_the_same_automaton_unit_lists (unit, regexp, j); - else if (allof->mode != rm_nothing) + else if (unit->mode != rm_nothing) abort (); } else if (allof->mode == rm_unit)