aboutsummaryrefslogtreecommitdiffstats
path: root/lib/Integers.v
diff options
context:
space:
mode:
authorAndrej Dudenhefner <31094379+mrhaandi@users.noreply.github.com>2022-09-08 15:59:56 +0200
committerGitHub <noreply@github.com>2022-09-08 15:59:56 +0200
commit88cccb19502dfec65f7e21d0f6772ba99b1fb99d (patch)
tree368ad5555ff5459c1fdb4fa597db96664e4930f0 /lib/Integers.v
parent108d60c059949e34c07719cb3ce38b8c62d27e0d (diff)
downloadcompcert-88cccb19502dfec65f7e21d0f6772ba99b1fb99d.tar.gz
compcert-88cccb19502dfec65f7e21d0f6772ba99b1fb99d.zip
Improved auto goal selection (#443)
Improves robustness in case of stronger (e)auto. This is in preparation of a change in Coq that will make auto and eauto stronger (https://github.com/coq/coq/pull/16293).
Diffstat (limited to 'lib/Integers.v')
-rw-r--r--lib/Integers.v4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/Integers.v b/lib/Integers.v
index 10faeefa..b69e9842 100644
--- a/lib/Integers.v
+++ b/lib/Integers.v
@@ -1263,7 +1263,7 @@ Qed.
Theorem and_zero: forall x, and x zero = zero.
Proof.
- bit_solve. apply andb_b_false.
+ bit_solve; apply andb_b_false.
Qed.
Corollary and_zero_l: forall x, and zero x = zero.
@@ -1273,7 +1273,7 @@ Qed.
Theorem and_mone: forall x, and x mone = x.
Proof.
- bit_solve. apply andb_b_true.
+ bit_solve; apply andb_b_true.
Qed.
Corollary and_mone_l: forall x, and mone x = x.