From 881da4c3c2dcc86ed14cd4e5cc9f17d801cd6db0 Mon Sep 17 00:00:00 2001 From: Ulya Trofimovich Date: Wed, 11 Mar 2015 16:42:08 +0000 Subject: [PATCH] Removed unreachable condition. --- re2c/code.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/re2c/code.cc b/re2c/code.cc index 692b4191..0055f193 100644 --- a/re2c/code.cc +++ b/re2c/code.cc @@ -691,7 +691,7 @@ static void doLinear(OutputFile & o, uint ind, Span * s, uint n, const State *fr if (n == 1) { - if (s[0].to->label != from->label + 1 || DFlag) + if (s[0].to->label != from->label + 1) { genGoTo(o, ind, from, s[0].to, readCh); } -- 2.40.0