aboutsummaryrefslogtreecommitdiffstats
path: root/interpret.h
diff options
context:
space:
mode:
Diffstat (limited to 'interpret.h')
-rw-r--r--interpret.h8
1 files changed, 7 insertions, 1 deletions
diff --git a/interpret.h b/interpret.h
index 6137e8e0..4de778e7 100644
--- a/interpret.h
+++ b/interpret.h
@@ -100,7 +100,13 @@ top:
}
#endif
- switch ((op = pc->opcode)) {
+ op = pc->opcode;
+ if (do_itrace) {
+ fprintf(stderr, "+ %s\n", opcode2str(op));
+ fflush(stderr);
+ }
+
+ switch (op) {
case Op_rule:
currule = pc->in_rule; /* for sole use in Op_K_next, Op_K_nextfile, Op_K_getline */
/* fall through */