aboutsummaryrefslogtreecommitdiff
path: root/theories
diff options
context:
space:
mode:
authorGuillaume Melquiond2020-06-09 20:35:55 +0200
committerGuillaume Melquiond2020-06-09 20:35:55 +0200
commit95be052f60b1b6b4cc0b12e92b3d1b86b5bd7ca9 (patch)
tree12e87cc010637051271423455d5b1bf42269215b /theories
parent95fb6a9e62bc061db5c9fe39a25d69b7cf2cd06e (diff)
parent9c76e6b4c9ae24826668fa9f72faf93e5d4c6acf (diff)
Merge PR #12484: Fix #12483 Incorrect specification of PrimFloat.leb
Ack-by: Zimmi48 Reviewed-by: erikmd Reviewed-by: silene
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.