summaryrefslogtreecommitdiff
path: root/backend/LTL.v
diff options
context:
space:
mode:
Diffstat (limited to 'backend/LTL.v')
-rw-r--r--backend/LTL.v10
1 files changed, 0 insertions, 10 deletions
diff --git a/backend/LTL.v b/backend/LTL.v
index de10845..27fee8a 100644
--- a/backend/LTL.v
+++ b/backend/LTL.v
@@ -197,16 +197,6 @@ Definition parent_locset (stack: list stackframe) : locset :=
| Stackframe f sp ls bb :: stack' => ls
end.
-(* REVISE
-(** [getslot sl ofs ty rs] looks up the value of location [S sl ofs ty] in [rs],
- and normalizes it to the type [ty] of this location. *)
-
-Definition getslot (sl: slot) (ofs: Z) (ty: typ) (rs: locset) : val :=
- Val.load_result
- (match ty with Tint => Mint32 | Tfloat => Mfloat64 | Tlong => Mint64 end)
- (rs (S sl ofs ty)).
-*)
-
Inductive step: state -> trace -> state -> Prop :=
| exec_start_block: forall s f sp pc rs m bb,
(fn_code f)!pc = Some bb ->