From b66ddea9b0304d390b56afadda80fa4d2f2184d6 Mon Sep 17 00:00:00 2001 From: Xavier Leroy Date: Tue, 23 Apr 2019 14:12:04 +0200 Subject: Replace nat_of_Z with Z.to_nat Use Z.to_nat theorems from the standard Coq library in preference to our theorems in lib/Coqlib.v. Simplify lib/Coqlib.v accordingly. --- common/Memtype.v | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'common/Memtype.v') diff --git a/common/Memtype.v b/common/Memtype.v index 03dc1499..53775d8b 100644 --- a/common/Memtype.v +++ b/common/Memtype.v @@ -358,7 +358,7 @@ Axiom load_loadbytes: Axiom loadbytes_length: forall m b ofs n bytes, loadbytes m b ofs n = Some bytes -> - length bytes = nat_of_Z n. + length bytes = Z.to_nat n. Axiom loadbytes_empty: forall m b ofs n, -- cgit