add information on the runtime impl to rose.txt

This commit is contained in:
Alex Coyte 2017-01-17 10:23:23 +11:00 committed by Matthew Barr
parent 8af4850d85
commit caa46201f0

View File

@ -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);