aboutsummaryrefslogtreecommitdiffstats
path: root/backend/Mach.v
diff options
context:
space:
mode:
Diffstat (limited to 'backend/Mach.v')
-rw-r--r--backend/Mach.v4
1 files changed, 2 insertions, 2 deletions
diff --git a/backend/Mach.v b/backend/Mach.v
index 3f251373..0bb24428 100644
--- a/backend/Mach.v
+++ b/backend/Mach.v
@@ -49,7 +49,7 @@ Require Import Locations.
Definition label := positive.
-Inductive instruction: Set :=
+Inductive instruction: Type :=
| Mgetstack: int -> typ -> mreg -> instruction
| Msetstack: mreg -> int -> typ -> instruction
| Mgetparam: int -> typ -> mreg -> instruction
@@ -65,7 +65,7 @@ Inductive instruction: Set :=
Definition code := list instruction.
-Record function: Set := mkfunction
+Record function: Type := mkfunction
{ fn_sig: signature;
fn_code: code;
fn_stacksize: Z;