aboutsummaryrefslogtreecommitdiff
path: root/Bedrock
diff options
context:
space:
mode:
Diffstat (limited to 'Bedrock')
-rw-r--r--Bedrock/Word.v8
1 files changed, 4 insertions, 4 deletions
diff --git a/Bedrock/Word.v b/Bedrock/Word.v
index a33d108fb..8ae651826 100644
--- a/Bedrock/Word.v
+++ b/Bedrock/Word.v
@@ -849,21 +849,21 @@ Implicit Arguments weqb_sound [].
Ltac isWcst w :=
match eval hnf in w with
- | WO => constr:true
+ | WO => constr:(true)
| WS ?b ?w' =>
match eval hnf in b with
| true => isWcst w'
| false => isWcst w'
- | _ => constr:false
+ | _ => constr:(false)
end
- | _ => constr:false
+ | _ => constr:(false)
end.
Ltac wcst w :=
let b := isWcst w in
match b with
| true => w
- | _ => constr:NotConstant
+ | _ => constr:(NotConstant)
end.
(* Here's how you can add a ring for a specific bit-width.