aboutsummaryrefslogtreecommitdiff
path: root/ssa.h
diff options
context:
space:
mode:
authorTeddy <ted.sybil@gmail.com>2014-05-05 06:10:29 +0800
committerTeddy <ted.sybil@gmail.com>2014-05-05 06:10:29 +0800
commit234bad3c4713b9795b9ec21b278fca78fcf65a1c (patch)
tree6df06ea5d1b7de141baa1f08d2f1779404ee3e28 /ssa.h
parentb26b06118a29dc717644f690722ec70b230e76a5 (diff)
sne seq opt
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 */