aboutsummaryrefslogtreecommitdiffstats
path: root/backend
diff options
context:
space:
mode:
authorXavier Leroy <xavier.leroy@college-de-france.fr>2019-08-02 10:41:29 +0200
committerXavier Leroy <xavier.leroy@college-de-france.fr>2019-08-07 10:37:28 +0200
commit136d25dcbf2829e63c20b96acf86d34c94474fde (patch)
tree9f571037b7bc16a9cd770151853876ee066069dd /backend
parentfb9d0d19cd76383b42ccbf6cc7c9698998c729f4 (diff)
downloadcompcert-136d25dcbf2829e63c20b96acf86d34c94474fde.tar.gz
compcert-136d25dcbf2829e63c20b96acf86d34c94474fde.zip
Coq 8.10 compatibility: make explicit the "core" hint database
"Hint Resolve foo." becomes "Hint Resolve foo : core", or "Local Hint Resolve foo : core".
Diffstat (limited to 'backend')
-rw-r--r--backend/Conventions.v2
1 files changed, 0 insertions, 2 deletions
diff --git a/backend/Conventions.v b/backend/Conventions.v
index 989bfa05..6025c6b4 100644
--- a/backend/Conventions.v
+++ b/backend/Conventions.v
@@ -128,8 +128,6 @@ Definition callee_save_loc (l: loc) :=
| S sl ofs ty => sl <> Outgoing
end.
-Hint Unfold callee_save_loc.
-
Definition agree_callee_save (ls1 ls2: Locmap.t) : Prop :=
forall l, callee_save_loc l -> ls1 l = ls2 l.