aboutsummaryrefslogtreecommitdiff
path: root/ssa.h
diff options
context:
space:
mode:
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;