diff options
author | vmakarov <vmakarov@138bc75d-0d04-0410-961f-82ee72b054a4> | 2002-05-06 20:14:32 +0000 |
---|---|---|
committer | vmakarov <vmakarov@138bc75d-0d04-0410-961f-82ee72b054a4> | 2002-05-06 20:14:32 +0000 |
commit | 5f70bbcf7c7a445b30f8383e8b64258c462d57ba (patch) | |
tree | be3ee480f0686e9a38c19e89ea5db3510a91342d /gcc/genautomata.c | |
parent | 9ed7631545904b9c39e2873da8115277832ca90d (diff) | |
download | gcc-5f70bbcf7c7a445b30f8383e8b64258c462d57ba.tar.gz |
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.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@53235 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/genautomata.c')
-rw-r--r-- | gcc/genautomata.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/genautomata.c b/gcc/genautomata.c index 486ed63a827..7b4dc1623a7 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) |