aboutsummaryrefslogtreecommitdiffstats
path: root/lib
diff options
context:
space:
mode:
authorDavid Monniaux <David.Monniaux@univ-grenoble-alpes.fr>2021-12-10 23:29:25 +0100
committerDavid Monniaux <David.Monniaux@univ-grenoble-alpes.fr>2021-12-10 23:29:25 +0100
commit1c77deb420e626aa79d5b7db15231c887cd7d870 (patch)
tree7e31b0381d2458ede49b7ab5198bd7d9ee26d1a0 /lib
parent4fb3896a10dac9137157262f532a6a5b6e390cf4 (diff)
downloadcompcert-kvx-1c77deb420e626aa79d5b7db15231c887cd7d870.tar.gz
compcert-kvx-1c77deb420e626aa79d5b7db15231c887cd7d870.zip
minor implicit issue
Diffstat (limited to 'lib')
-rw-r--r--lib/IEEE754_extra.v4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/IEEE754_extra.v b/lib/IEEE754_extra.v
index ed3d9f1f..a76daab4 100644
--- a/lib/IEEE754_extra.v
+++ b/lib/IEEE754_extra.v
@@ -1167,7 +1167,7 @@ Proof.
unfold Z.succ. rewrite plus_IZR. lra.
Qed.
-Lemma Rabs_le_rev : forall {a} {b}, (Rabs a <= b -> -b <= a <= b)%R.
+Lemma Rabs_le_rev : forall a b, (Rabs a <= b -> -b <= a <= b)%R.
Proof.
intros a b ABS.
unfold Rabs in ABS.
@@ -1179,7 +1179,7 @@ Theorem ZofB_ne_range:
Proof.
intros. rewrite ZofB_ne_correct in H. destruct (is_finite prec emax f) eqn:FIN; inversion H.
pose proof (Znearest_imp2 (fun x => negb (Z.even x)) (B2R prec emax f)) as ABS.
- pose proof (Rabs_le_rev ABS).
+ pose proof (Rabs_le_rev _ _ ABS).
lra.
Qed.