From 615fb53c13f2407a0b6b470bbdf8e468fc4a1d78 Mon Sep 17 00:00:00 2001 From: xleroy Date: Fri, 5 Jun 2009 13:39:59 +0000 Subject: Adapted to work with Coq 8.2-1 git-svn-id: https://yquem.inria.fr/compcert/svn/compcert/trunk@1076 fca1b0fc-160b-0410-b1d3-a4f43f01ea2e --- backend/Locations.v | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'backend/Locations.v') diff --git a/backend/Locations.v b/backend/Locations.v index ca2f5272..295df281 100644 --- a/backend/Locations.v +++ b/backend/Locations.v @@ -42,7 +42,7 @@ Require Export Machregs. cannot reside in hardware registers, as determined by the calling conventions. *) -Inductive slot: Set := +Inductive slot: Type := | Local: Z -> typ -> slot | Incoming: Z -> typ -> slot | Outgoing: Z -> typ -> slot. @@ -108,7 +108,7 @@ Qed. (** Locations are just the disjoint union of machine registers and activation record slots. *) -Inductive loc : Set := +Inductive loc : Type := | R: mreg -> loc | S: slot -> loc. -- cgit