summaryrefslogtreecommitdiff
path: root/cfrontend/Cminorgenproof.v
diff options
context:
space:
mode:
authorGravatar xleroy <xleroy@fca1b0fc-160b-0410-b1d3-a4f43f01ea2e>2009-06-05 13:39:59 +0000
committerGravatar xleroy <xleroy@fca1b0fc-160b-0410-b1d3-a4f43f01ea2e>2009-06-05 13:39:59 +0000
commit615fb53c13f2407a0b6b470bbdf8e468fc4a1d78 (patch)
treeec5f45b6546e19519f59b1ee0f42955616ca1b98 /cfrontend/Cminorgenproof.v
parentd1cdc0496d7d52e3ab91554dbf53fcc0e7f244eb (diff)
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
Diffstat (limited to 'cfrontend/Cminorgenproof.v')
-rw-r--r--cfrontend/Cminorgenproof.v4
1 files changed, 2 insertions, 2 deletions
diff --git a/cfrontend/Cminorgenproof.v b/cfrontend/Cminorgenproof.v
index 5615eab..f256bb2 100644
--- a/cfrontend/Cminorgenproof.v
+++ b/cfrontend/Cminorgenproof.v
@@ -225,7 +225,7 @@ Record match_globalenvs (f: meminj) : Prop :=
collecting information on the current execution state of a Csharpminor
function and its Cminor translation. *)
-Record frame : Set :=
+Record frame : Type :=
mkframe {
fr_cenv: compilenv;
fr_e: Csharpminor.env;
@@ -235,7 +235,7 @@ Record frame : Set :=
fr_high: Z
}.
-Definition callstack : Set := list frame.
+Definition callstack : Type := list frame.
(** Matching of call stacks imply matching of environments for each of
the frames, plus matching of the global environments, plus disjointness