summaryrefslogtreecommitdiff
path: root/scope.h
diff options
context:
space:
mode:
Diffstat (limited to 'scope.h')
-rw-r--r--scope.h6
1 files changed, 4 insertions, 2 deletions
diff --git a/scope.h b/scope.h
index e09e14e..a67c66b 100644
--- a/scope.h
+++ b/scope.h
@@ -6,11 +6,13 @@ struct storage_location {
REGISTER,
JMP_LABEL,
BP_OFFSET,
+ IMMEDIATE,
} type;
union {
- long long offset;
- const char* label;
const struct reg* reg;
+ const char* label;
+ long long offset;
+ unsigned long long value;
};
unsigned long long sz;
};