Commit 83e0be55 by Vladimir Makarov Committed by Vladimir Makarov

genautomata.c (form_the_same_automaton_unit_lists_from_regexp): Fix typo in…

genautomata.c (form_the_same_automaton_unit_lists_from_regexp): Fix typo in usage of allof instead of unit.

2002-05-06  Vladimir Makarov  <vmakarov@redhat.com>

	* genautomata.c (form_the_same_automaton_unit_lists_from_regexp):
	Fix typo in usage of allof instead of unit.

From-SVN: r53235
parent 688ec718
2002-05-06 Vladimir Makarov <vmakarov@redhat.com>
* genautomata.c (form_the_same_automaton_unit_lists_from_regexp):
Fix typo in usage of allof instead of unit.
2002-05-06 Richard Henderson <rth@redhat.com> 2002-05-06 Richard Henderson <rth@redhat.com>
* recog.c (if_test_bypass_p): Accept multiple set insns for OUT, * recog.c (if_test_bypass_p): Accept multiple set insns for OUT,
......
...@@ -4924,7 +4924,7 @@ form_the_same_automaton_unit_lists_from_regexp (regexp) ...@@ -4924,7 +4924,7 @@ form_the_same_automaton_unit_lists_from_regexp (regexp)
if (unit->mode == rm_unit) if (unit->mode == rm_unit)
process_unit_to_form_the_same_automaton_unit_lists process_unit_to_form_the_same_automaton_unit_lists
(unit, regexp, j); (unit, regexp, j);
else if (allof->mode != rm_nothing) else if (unit->mode != rm_nothing)
abort (); abort ();
} }
else if (allof->mode == rm_unit) else if (allof->mode == rm_unit)
......
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