aboutsummaryrefslogtreecommitdiffstats
path: root/common/AST.v
diff options
context:
space:
mode:
authorXavier Leroy <xavier.leroy@inria.fr>2017-02-13 11:46:23 +0100
committerXavier Leroy <xavier.leroy@inria.fr>2017-02-13 13:49:06 +0100
commite0aab135237aaa9334afe9acc9b519bbe2b53ae9 (patch)
treea0fced5f8e0affa13df1712a07958be223e12ade /common/AST.v
parent3bd82b3cb10a721f2e2c8db6d0271c83a22095a3 (diff)
downloadcompcert-kvx-e0aab135237aaa9334afe9acc9b519bbe2b53ae9.tar.gz
compcert-kvx-e0aab135237aaa9334afe9acc9b519bbe2b53ae9.zip
Replace "Implicit Arguments" with "Arguments"
This silences a warning of Coq 8.6. Some "Implicit Arguments" remain in flocq/ but I'd rather not diverge from the released version of flocq if at all possible.
Diffstat (limited to 'common/AST.v')
-rw-r--r--common/AST.v6
1 files changed, 3 insertions, 3 deletions
diff --git a/common/AST.v b/common/AST.v
index e6fdec3c..34f29bb3 100644
--- a/common/AST.v
+++ b/common/AST.v
@@ -260,8 +260,8 @@ Inductive globdef (F V: Type) : Type :=
| Gfun (f: F)
| Gvar (v: globvar V).
-Implicit Arguments Gfun [F V].
-Implicit Arguments Gvar [F V].
+Arguments Gfun [F V].
+Arguments Gvar [F V].
Record program (F V: Type) : Type := mkprogram {
prog_defs: list (ident * globdef F V);
@@ -530,7 +530,7 @@ Inductive fundef (F: Type): Type :=
| Internal: F -> fundef F
| External: external_function -> fundef F.
-Implicit Arguments External [F].
+Arguments External [F].
Section TRANSF_FUNDEF.