summaryrefslogtreecommitdiff
path: root/common/AST.v
diff options
context:
space:
mode:
Diffstat (limited to 'common/AST.v')
-rw-r--r--common/AST.v3
1 files changed, 2 insertions, 1 deletions
diff --git a/common/AST.v b/common/AST.v
index 673f1d8..5b8c997 100644
--- a/common/AST.v
+++ b/common/AST.v
@@ -62,7 +62,8 @@ Inductive init_data: Set :=
| Init_int32: int -> init_data
| Init_float32: float -> init_data
| Init_float64: float -> init_data
- | Init_space: Z -> init_data.
+ | Init_space: Z -> init_data
+ | Init_pointer: list init_data -> init_data.
(** Whole programs consist of:
- a collection of function definitions (name and description);