aboutsummaryrefslogtreecommitdiff
path: root/theories
diff options
context:
space:
mode:
authorPierre Roux2020-06-08 18:17:30 +0200
committerPierre Roux2020-06-08 18:45:53 +0200
commit8ecdb858a416b945fd9bc429e9eecf8aa451f0e7 (patch)
tree0688889d037a6968ee210a6e44a2872d2df06651 /theories
parent2e85a6b4acf419064f8a979d254a7b1d871c81c2 (diff)
Fix 12483
Diffstat (limited to 'theories')
-rw-r--r--theories/Floats/SpecFloat.v2
1 files changed, 1 insertions, 1 deletions
diff --git a/theories/Floats/SpecFloat.v b/theories/Floats/SpecFloat.v
index 349b37c704..aaf7cbb8f7 100644
--- a/theories/Floats/SpecFloat.v
+++ b/theories/Floats/SpecFloat.v
@@ -222,7 +222,7 @@ Section FloatOps.
Definition SFleb f1 f2 :=
match SFcompare f1 f2 with
- | Some Le => true
+ | Some (Lt | Eq) => true
| _ => false
end.