aboutsummaryrefslogtreecommitdiffstats
path: root/backend/Mach.v
diff options
context:
space:
mode:
Diffstat (limited to 'backend/Mach.v')
-rw-r--r--backend/Mach.v1
1 files changed, 1 insertions, 0 deletions
diff --git a/backend/Mach.v b/backend/Mach.v
index 0bb24428..f7e85c3e 100644
--- a/backend/Mach.v
+++ b/backend/Mach.v
@@ -61,6 +61,7 @@ Inductive instruction: Type :=
| Mlabel: label -> instruction
| Mgoto: label -> instruction
| Mcond: condition -> list mreg -> label -> instruction
+ | Mjumptable: mreg -> list label -> instruction
| Mreturn: instruction.
Definition code := list instruction.