aboutsummaryrefslogtreecommitdiffstats
path: root/backend/Duplicate.v
diff options
context:
space:
mode:
authorDavid Monniaux <david.monniaux@univ-grenoble-alpes.fr>2019-10-16 18:34:30 +0200
committerDavid Monniaux <david.monniaux@univ-grenoble-alpes.fr>2019-10-16 18:34:30 +0200
commitd4e2f7b715b21efe0d693415ab63dad5a22afa92 (patch)
treeb29b8e158a61865a16f6dba7ea14eba767bf4516 /backend/Duplicate.v
parent9ee131bd329d1941eb37eb347f36a0c613a719a9 (diff)
downloadcompcert-kvx-d4e2f7b715b21efe0d693415ab63dad5a22afa92.tar.gz
compcert-kvx-d4e2f7b715b21efe0d693415ab63dad5a22afa92.zip
eq_condition already existed
Diffstat (limited to 'backend/Duplicate.v')
-rw-r--r--backend/Duplicate.v2
1 files changed, 1 insertions, 1 deletions
diff --git a/backend/Duplicate.v b/backend/Duplicate.v
index d1458bd4..68a7f413 100644
--- a/backend/Duplicate.v
+++ b/backend/Duplicate.v
@@ -157,7 +157,7 @@ Definition verify_match_inst revmap inst tinst :=
| Icond cond' lr' n1' n2' =>
do u1 <- verify_is_copy revmap n1 n1';
do u2 <- verify_is_copy revmap n2 n2';
- if (condition_eq cond cond') then
+ if (eq_condition cond cond') then
if (list_eq_dec Pos.eq_dec lr lr') then OK tt
else Error (msg "Different lr in Icond")
else Error (msg "Different cond in Icond")