aboutsummaryrefslogtreecommitdiff
path: root/ssa.h
diff options
context:
space:
mode:
Diffstat (limited to 'ssa.h')
-rw-r--r--ssa.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/ssa.h b/ssa.h
index 81857c7..307328b 100644
--- a/ssa.h
+++ b/ssa.h
@@ -54,8 +54,8 @@ void colist_remove(COList_t node);
struct CInst {
enum OpCode {
- BEQ, /* conditional jump */
- BNE,
+ BEQ = 0, /* conditional jump */
+ BNE = 1,
GOTO, /* unconditional jump */
ARR, /* displacement */
PUSH, /* push to stack top */