aboutsummaryrefslogtreecommitdiffstats
path: root/aarch64/Asmblock.v
diff options
context:
space:
mode:
authorLéo Gourdin <leo.gourdin@univ-grenoble-alpes.fr>2020-11-04 22:40:19 +0100
committerLéo Gourdin <leo.gourdin@univ-grenoble-alpes.fr>2020-11-04 22:40:19 +0100
commit0bf4c8582574b9c7bea43547d75b87c85fdee1e1 (patch)
tree5015578705250167cf15134b34e4d0afad3e2b81 /aarch64/Asmblock.v
parentcdb54160ff67bef3ab40e3cc85416f2c897ac82b (diff)
downloadcompcert-kvx-0bf4c8582574b9c7bea43547d75b87c85fdee1e1.tar.gz
compcert-kvx-0bf4c8582574b9c7bea43547d75b87c85fdee1e1.zip
Smart scheduler build problem and flatten solution OK
Diffstat (limited to 'aarch64/Asmblock.v')
-rw-r--r--aarch64/Asmblock.v7
1 files changed, 7 insertions, 0 deletions
diff --git a/aarch64/Asmblock.v b/aarch64/Asmblock.v
index 27292234..4bc56a05 100644
--- a/aarch64/Asmblock.v
+++ b/aarch64/Asmblock.v
@@ -336,6 +336,13 @@ Inductive basic : Type :=
*)
.
+Inductive instruction : Type :=
+ | PBasic (i: basic)
+ | PControl (i: control).
+
+Coercion PBasic: basic >-> instruction.
+Coercion PControl: control >-> instruction.
+
(** * Definition of a bblock
A bblock must contain at least one instruction.