aboutsummaryrefslogtreecommitdiffstats
path: root/backend/LICMproof.v
diff options
context:
space:
mode:
Diffstat (limited to 'backend/LICMproof.v')
-rw-r--r--backend/LICMproof.v6
1 files changed, 6 insertions, 0 deletions
diff --git a/backend/LICMproof.v b/backend/LICMproof.v
index 065a7f74..2b76b668 100644
--- a/backend/LICMproof.v
+++ b/backend/LICMproof.v
@@ -12,6 +12,12 @@ Section PRESERVATION.
Variables prog tprog: program.
Hypothesis TRANSF: match_prog prog tprog.
+ Lemma transf_program_match:
+ forall prog tprog, transf_program prog = OK tprog -> match_prog prog tprog.
+ Proof.
+ intros. eapply match_transform_partial_program_contextual; eauto.
+ Qed.
+
Theorem transf_program_correct :
Smallstep.forward_simulation (semantics prog) (semantics tprog).
Proof.