bugfix in the pattern matching compiler and a number of other fixes that I somehow did not push before

This commit is contained in:
kr.angelov
2014-09-29 15:00:04 +00:00
parent 0d08417efe
commit 698329f469
5 changed files with 275 additions and 187 deletions

View File

@@ -119,7 +119,8 @@ typedef enum {
PGF_INSTR_PUSH = 9,
PGF_INSTR_EVAL = 10,
PGF_INSTR_RET = 13,
PGF_INSTR_FAIL = 15
PGF_INSTR_DROP = 15,
PGF_INSTR_FAIL = 16
} PgfInstruction;
struct PgfPGF {