summaryrefslogtreecommitdiff
path: root/cfrontend/Cexec.v
diff options
context:
space:
mode:
Diffstat (limited to 'cfrontend/Cexec.v')
-rw-r--r--cfrontend/Cexec.v14
1 files changed, 0 insertions, 14 deletions
diff --git a/cfrontend/Cexec.v b/cfrontend/Cexec.v
index 383eeb8..e3b57c5 100644
--- a/cfrontend/Cexec.v
+++ b/cfrontend/Cexec.v
@@ -1653,20 +1653,6 @@ Definition do_step (w: world) (s: state) : list (trace * state) :=
| _ => nil
end.
-(*
-Definition at_external (S: state): option (external_function * list val * mem) :=
- match S with
- | Callstate (External ef _ _) vargs k m => Some (ef, vargs, m)
- | _ => None
- end.
-
-Definition after_external (S: state) (v: val) (m: mem): option state :=
- match S with
- | Callstate _ _ k _ => Some (Returnstate v k m)
- | _ => None
- end.
-*)
-
Ltac myinv :=
match goal with
| [ |- In _ nil -> _ ] => intro X; elim X