aboutsummaryrefslogtreecommitdiffstats
path: root/cparser
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 /cparser
parent3bd82b3cb10a721f2e2c8db6d0271c83a22095a3 (diff)
downloadcompcert-e0aab135237aaa9334afe9acc9b519bbe2b53ae9.tar.gz
compcert-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 'cparser')
-rw-r--r--cparser/validator/Automaton.v6
-rw-r--r--cparser/validator/Interpreter.v4
2 files changed, 5 insertions, 5 deletions
diff --git a/cparser/validator/Automaton.v b/cparser/validator/Automaton.v
index 98ab1246..fc995298 100644
--- a/cparser/validator/Automaton.v
+++ b/cparser/validator/Automaton.v
@@ -102,9 +102,9 @@ Module Types(Import Init:AutInit).
T term = last_symb_of_non_init_state s -> lookahead_action term
| Reduce_act: production -> lookahead_action term
| Fail_act: lookahead_action term.
- Implicit Arguments Shift_act [term].
- Implicit Arguments Reduce_act [term].
- Implicit Arguments Fail_act [term].
+ Arguments Shift_act [term].
+ Arguments Reduce_act [term].
+ Arguments Fail_act [term].
Inductive action :=
| Default_reduce_act: production -> action
diff --git a/cparser/validator/Interpreter.v b/cparser/validator/Interpreter.v
index a24362f8..4ac02693 100644
--- a/cparser/validator/Interpreter.v
+++ b/cparser/validator/Interpreter.v
@@ -26,8 +26,8 @@ Inductive result (A:Type) :=
| Err: result A
| OK: A -> result A.
-Implicit Arguments Err [A].
-Implicit Arguments OK [A].
+Arguments Err [A].
+Arguments OK [A].
Definition bind {A B: Type} (f: result A) (g: A -> result B): result B :=
match f with