From: Alex Coyte Date: Mon, 16 Jan 2017 23:23:23 +0000 (+1100) Subject: add information on the runtime impl to rose.txt X-Git-Tag: v4.5.0^2~287 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=caa46201f071a371051038910b5c08dc007388cd;p=thirdparty%2Fvectorscan.git add information on the runtime impl to rose.txt --- diff --git a/src/rose/rose_dump.cpp b/src/rose/rose_dump.cpp index d3bf980e..96f49688 100644 --- a/src/rose/rose_dump.cpp +++ b/src/rose/rose_dump.cpp @@ -1184,6 +1184,12 @@ void roseDumpText(const RoseEngine *t, FILE *f) { if (t->hasSom) { fprintf(f, " hasSom"); } + if (t->runtimeImpl == ROSE_RUNTIME_PURE_LITERAL) { + fprintf(f, " pureLiteral"); + } + if (t->runtimeImpl == ROSE_RUNTIME_SINGLE_OUTFIX) { + fprintf(f, " soleOutfix"); + } fprintf(f, "\n"); fprintf(f, "dkey count : %u\n", t->dkeyCount);