aboutsummaryrefslogtreecommitdiff
path: root/lpprint.c
diff options
context:
space:
mode:
Diffstat (limited to 'lpprint.c')
-rw-r--r--lpprint.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/lpprint.c b/lpprint.c
index 21fb038..3c6a8f6 100644
--- a/lpprint.c
+++ b/lpprint.c
@@ -58,7 +58,7 @@ void printinst (const Instruction *op, const Instruction *p) {
58 "testany", "testchar", "testset", 58 "testany", "testchar", "testset",
59 "span", "behind", 59 "span", "behind",
60 "ret", "end", 60 "ret", "end",
61 "choice", "jmp", "call", "open_call", 61 "choice", "pred_choice", "jmp", "call", "open_call", /* labeled failure */
62 "commit", "partial_commit", "back_commit", "failtwice", "fail", "giveup", 62 "commit", "partial_commit", "back_commit", "failtwice", "fail", "giveup",
63 "fullcapture", "opencapture", "closecapture", "closeruntime", 63 "fullcapture", "opencapture", "closecapture", "closeruntime",
64 "throw", "throw_rec", /* labeled failure */ 64 "throw", "throw_rec", /* labeled failure */
@@ -103,7 +103,8 @@ void printinst (const Instruction *op, const Instruction *p) {
103 break; 103 break;
104 } 104 }
105 case IJmp: case ICall: case ICommit: case IChoice: 105 case IJmp: case ICall: case ICommit: case IChoice:
106 case IPartialCommit: case IBackCommit: case ITestAny: { 106 case IPartialCommit: case IBackCommit: case ITestAny:
107 case IPredChoice: { /* labeled failure */
107 printjmp(op, p); 108 printjmp(op, p);
108 break; 109 break;
109 } 110 }