From: Ulya Trofimovich Date: Sat, 7 Mar 2015 20:54:08 +0000 (+0000) Subject: Removed obsolete condition (makes no sense in single-pass mode). X-Git-Tag: 0.15~363 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=b67be80d3539b7578948d812b0216188790007ca;p=re2c Removed obsolete condition (makes no sense in single-pass mode). --- diff --git a/re2c/code.cc b/re2c/code.cc index 8aaa8d68..d0724018 100644 --- a/re2c/code.cc +++ b/re2c/code.cc @@ -1034,7 +1034,7 @@ void Go::genGoto(OutputFile & o, uint ind, const State *from, const State *next, return; } - if ((gFlag || (encoding.szCodeUnit() > 1)) && wSpans == ~0u) + if (gFlag || (encoding.szCodeUnit() > 1)) { uint nBitmaps = 0; std::set vTargets;