summaryrefslogtreecommitdiff
path: root/ragel/cdcodegen.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'ragel/cdcodegen.cpp')
-rw-r--r--ragel/cdcodegen.cpp8
1 files changed, 8 insertions, 0 deletions
diff --git a/ragel/cdcodegen.cpp b/ragel/cdcodegen.cpp
index c2f1381c..96d85010 100644
--- a/ragel/cdcodegen.cpp
+++ b/ragel/cdcodegen.cpp
@@ -361,6 +361,14 @@ string FsmCodeGen::WIDE_KEY( RedStateAp *state, Key key )
}
}
+void FsmCodeGen::EOF_CHECK( ostream &ret )
+{
+ ret <<
+ " if ( " << P() << " == " << PE() << " )\n"
+ " goto _test_eof;\n";
+
+ testEofUsed = true;
+}
void FsmCodeGen::EXEC( ostream &ret, GenInlineItem *item, int targState, int inFinish )