aboutsummaryrefslogtreecommitdiffstats
path: root/common/Values.v
diff options
context:
space:
mode:
authorXavier Leroy <xavierleroy@users.noreply.github.com>2015-04-01 18:28:02 +0200
committerXavier Leroy <xavierleroy@users.noreply.github.com>2015-04-01 18:28:02 +0200
commit95ba79b10e832025bbc9843f9d14614f7dff0fcb (patch)
tree8ca03b99cf6be2aab8c7b266196569019a2a7f13 /common/Values.v
parent68e2ce02f8d69b26c9cea6e0d338f855cbea3ace (diff)
parente11b3b885a6d359925b86743b89698cc6757157a (diff)
downloadcompcert-kvx-95ba79b10e832025bbc9843f9d14614f7dff0fcb.tar.gz
compcert-kvx-95ba79b10e832025bbc9843f9d14614f7dff0fcb.zip
Merge pull request #34 from AbsInt/extended-annotations
Extended annotations
Diffstat (limited to 'common/Values.v')
-rw-r--r--common/Values.v6
1 files changed, 6 insertions, 0 deletions
diff --git a/common/Values.v b/common/Values.v
index e7dce7e9..12b380b7 100644
--- a/common/Values.v
+++ b/common/Values.v
@@ -1383,6 +1383,12 @@ Proof.
left; congruence. tauto. tauto.
Qed.
+Lemma lessdef_list_trans:
+ forall vl1 vl2, lessdef_list vl1 vl2 -> forall vl3, lessdef_list vl2 vl3 -> lessdef_list vl1 vl3.
+Proof.
+ induction 1; intros vl3 LD; inv LD; constructor; eauto using lessdef_trans.
+Qed.
+
(** Compatibility of operations with the [lessdef] relation. *)
Lemma load_result_lessdef: