aboutsummaryrefslogtreecommitdiffstats
path: root/lib/Floats.v
diff options
context:
space:
mode:
authorXavier Leroy <xavierleroy@users.noreply.github.com>2021-09-15 14:00:41 +0200
committerGitHub <noreply@github.com>2021-09-15 14:00:41 +0200
commitc9fad7cd7bdc4e79fb06a1d39abfa0d5471623e5 (patch)
tree300c838636f84ef8cc57faa86eca9440e9171c69 /lib/Floats.v
parent8eaff6bf3933f2213ae85584009e05123c40fa65 (diff)
downloadcompcert-kvx-c9fad7cd7bdc4e79fb06a1d39abfa0d5471623e5.tar.gz
compcert-kvx-c9fad7cd7bdc4e79fb06a1d39abfa0d5471623e5.zip
Avoid `Global Set Asymmetric Patterns` (#408)
Instead, add `Set Asymmetric Patterns` to the files that need it, or use `Arguments` to make inductive types work better with symmetric patterns. Closes: #403
Diffstat (limited to 'lib/Floats.v')
-rw-r--r--lib/Floats.v1
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/Floats.v b/lib/Floats.v
index f56078aa..43caebb0 100644
--- a/lib/Floats.v
+++ b/lib/Floats.v
@@ -26,6 +26,7 @@ Import ListNotations.
Close Scope R_scope.
Open Scope Z_scope.
+Set Asymmetric Patterns.
Definition float := binary64. (**r the type of IEE754 double-precision FP numbers *)
Definition float32 := binary32. (**r the type of IEE754 single-precision FP numbers *)