aboutsummaryrefslogtreecommitdiffstats
path: root/backend/Duplicate.v
diff options
context:
space:
mode:
Diffstat (limited to 'backend/Duplicate.v')
-rw-r--r--backend/Duplicate.v3
1 files changed, 2 insertions, 1 deletions
diff --git a/backend/Duplicate.v b/backend/Duplicate.v
index 07577704..ce6c436f 100644
--- a/backend/Duplicate.v
+++ b/backend/Duplicate.v
@@ -74,7 +74,8 @@ Definition verify_mapping_match_nodes (f: function) (xf: xfunction) : res unit :
(** Verifies that the [fn_revmap] of the translated function [xf] is giving correct information in regards to [f] *)
Definition verify_mapping (f: function) (xf: xfunction) : res unit :=
- do u <- verify_mapping_entrypoint f xf; OK tt.
+ do u <- verify_mapping_entrypoint f xf;
+ do v <- verify_mapping_match_nodes f xf; OK tt.
(* TODO - verify the other axiom *)
(** * Entry points *)