aboutsummaryrefslogtreecommitdiffstats
path: root/src/translation/HTLgenproof.v
diff options
context:
space:
mode:
authorYann Herklotz <git@yannherklotz.com>2020-06-22 12:15:53 +0100
committerYann Herklotz <git@yannherklotz.com>2020-06-22 12:15:53 +0100
commitf38fbe6e56bdf69cb5892b5397366ec3d0db9073 (patch)
treef13bee9445748f7a5131a621e56d36e8be7f959f /src/translation/HTLgenproof.v
parent9089af0dbd8dc079c16501c73727df82c34c530d (diff)
downloadvericert-f38fbe6e56bdf69cb5892b5397366ec3d0db9073.tar.gz
vericert-f38fbe6e56bdf69cb5892b5397366ec3d0db9073.zip
Admit everything temporarily
Diffstat (limited to 'src/translation/HTLgenproof.v')
-rw-r--r--src/translation/HTLgenproof.v10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/translation/HTLgenproof.v b/src/translation/HTLgenproof.v
index 4b7f268..9786d23 100644
--- a/src/translation/HTLgenproof.v
+++ b/src/translation/HTLgenproof.v
@@ -205,7 +205,7 @@ Section CORRECTNESS.
Hypothesis TRANSL : match_prog prog tprog.
- Let ge : RTL.genv := Globalenvs.Genv.globalenv prog.
+(* Let ge : RTL.genv := Globalenvs.Genv.globalenv prog.
Let tge : HTL.genv := Globalenvs.Genv.globalenv tprog.
Lemma symbols_preserved:
@@ -574,16 +574,16 @@ Section CORRECTNESS.
Proof.
intros. inv H0. inv H. inv H4. inv MS. constructor. trivial.
Qed.
- Hint Resolve transl_final_states : htlproof.
+ Hint Resolve transl_final_states : htlproof.*)
Theorem transf_program_correct:
Smallstep.forward_simulation (RTL.semantics prog) (HTL.semantics tprog).
Proof.
- eapply Smallstep.forward_simulation_plus.
+(* eapply Smallstep.forward_simulation_plus.
apply senv_preserved.
eexact transl_initial_states.
eexact transl_final_states.
- exact transl_step_correct.
-Qed.
+ exact transl_step_correct.*)
+Admitted.
End CORRECTNESS.