mirror of
https://github.com/DarkPlacesEngine/gmqcc.git
synced 2025-03-22 10:41:43 +00:00
Adding the 3 virtual instructions required for the IR later.
This commit is contained in:
parent
42d9ff3563
commit
22fcf399e0
1 changed files with 8 additions and 1 deletions
9
gmqcc.h
9
gmqcc.h
|
@ -365,7 +365,14 @@ enum {
|
|||
INSTR_AND,
|
||||
INSTR_OR,
|
||||
INSTR_BITAND,
|
||||
INSTR_BITOR
|
||||
INSTR_BITOR,
|
||||
|
||||
/* Virtual instructions used by the IR
|
||||
* Keep at the end!
|
||||
*/
|
||||
VINSTR_PHI,
|
||||
VINSTR_JUMP,
|
||||
VINSTR_COND,
|
||||
};
|
||||
|
||||
/*
|
||||
|
|
Loading…
Reference in a new issue