aboutsummaryrefslogtreecommitdiff
path: root/gcc/genautomata.c
diff options
context:
space:
mode:
authorVladimir Makarov <vmakarov@redhat.com>2002-05-06 20:14:32 +0000
committerVladimir Makarov <vmakarov@gcc.gnu.org>2002-05-06 20:14:32 +0000
commit83e0be551cb062251cbdd8588214006f19bae3b7 (patch)
treebe3ee480f0686e9a38c19e89ea5db3510a91342d /gcc/genautomata.c
parent688ec718568245e50e45a3824d8dda4675b57549 (diff)
downloadgcc-83e0be551cb062251cbdd8588214006f19bae3b7.zip
gcc-83e0be551cb062251cbdd8588214006f19bae3b7.tar.gz
gcc-83e0be551cb062251cbdd8588214006f19bae3b7.tar.bz2
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
Diffstat (limited to 'gcc/genautomata.c')
-rw-r--r--gcc/genautomata.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/genautomata.c b/gcc/genautomata.c
index 486ed63..7b4dc16 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)