aboutsummaryrefslogtreecommitdiffstats
path: root/backend/ValueAnalysis.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 /backend/ValueAnalysis.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 'backend/ValueAnalysis.v')
-rw-r--r--backend/ValueAnalysis.v2
1 files changed, 1 insertions, 1 deletions
diff --git a/backend/ValueAnalysis.v b/backend/ValueAnalysis.v
index ebf2c5ea..61a37180 100644
--- a/backend/ValueAnalysis.v
+++ b/backend/ValueAnalysis.v
@@ -339,7 +339,7 @@ Qed.
Lemma aregs_sound:
forall bc e ae rl, ematch bc e ae -> list_forall2 (vmatch bc) (e##rl) (aregs ae rl).
Proof.
- induction rl; simpl; intros. constructor. constructor; auto. apply areg_sound; auto.
+ induction rl; simpl; intros. constructor. constructor; [apply areg_sound|]; auto.
Qed.
Global Hint Resolve areg_sound aregs_sound: va.