aboutsummaryrefslogtreecommitdiffstats
path: root/backend
diff options
context:
space:
mode:
authorXavier Leroy <xavier.leroy@college-de-france.fr>2021-04-19 19:08:08 +0200
committerXavier Leroy <xavier.leroy@college-de-france.fr>2021-04-19 19:08:08 +0200
commite4542668e6d348e0300e76bb77105af24aff4233 (patch)
tree6d10b4d627dcb40512d3ddb94a04d9ebeaf4a64a /backend
parent7563a5df926a4c6fb1489a7a4c847641c8a35095 (diff)
downloadcompcert-kvx-e4542668e6d348e0300e76bb77105af24aff4233.tar.gz
compcert-kvx-e4542668e6d348e0300e76bb77105af24aff4233.zip
Use List.repeat from Coq's standard library instead of list_repeat
Diffstat (limited to 'backend')
-rw-r--r--backend/NeedDomain.v2
1 files changed, 1 insertions, 1 deletions
diff --git a/backend/NeedDomain.v b/backend/NeedDomain.v
index fc1ae16d..62b8ff90 100644
--- a/backend/NeedDomain.v
+++ b/backend/NeedDomain.v
@@ -737,7 +737,7 @@ Lemma store_argument_sound:
Proof.
intros.
assert (UNDEF: list_forall2 memval_lessdef
- (list_repeat (size_chunk_nat chunk) Undef)
+ (List.repeat Undef (size_chunk_nat chunk))
(encode_val chunk w)).
{
rewrite <- (encode_val_length chunk w).