aboutsummaryrefslogtreecommitdiff
path: root/ssa.h
diff options
context:
space:
mode:
authorTeddy <ted.sybil@gmail.com>2014-04-28 09:20:58 +0800
committerTeddy <ted.sybil@gmail.com>2014-04-28 09:20:58 +0800
commitb9dda0c12e15f178d99eaea687f86d2b4e11fe16 (patch)
tree9f4006644f6863991c88236bc03497df196136a1 /ssa.h
parent33d2a7be3d2ccd826dc3063d4d4703e37b8b3dd2 (diff)
ssa stage 1 almost done
Diffstat (limited to 'ssa.h')
-rw-r--r--ssa.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/ssa.h b/ssa.h
index bc28414..cdd1894 100644
--- a/ssa.h
+++ b/ssa.h
@@ -6,11 +6,13 @@ typedef struct COpr {
enum {
VAR,
TMP,
- IMM
+ IMM,
+ IMMS
} kind;
union {
CVar_t var;
int imm;
+ char *str;
} info;
} COpr;