the compiler now allows + to be used as a floating point addition in the abstract syntax

This commit is contained in:
kr.angelov
2014-10-14 11:15:18 +00:00
parent b5cc77aea1
commit ac288386c4
6 changed files with 20 additions and 1 deletions

View File

@@ -136,7 +136,8 @@ typedef enum {
PGF_INSTR_PUSH = 9,
PGF_INSTR_EVAL = 10,
PGF_INSTR_DROP = 13,
PGF_INSTR_FAIL = 14
PGF_INSTR_FAIL = 14,
PGF_INSTR_ADD = 15
} PgfInstruction;
typedef GuSeq PgfConcrs;