From 624553ae0b0be62a16ff4bcc9df358f71b759815 Mon Sep 17 00:00:00 2001 From: Vincent Laporte Date: Mon, 25 Mar 2019 10:45:46 +0100 Subject: Minor simplifications in two proofs. (#280) Preparation for Coq PR 9725 that may make `eauto` stronger. --- backend/Unusedglobproof.v | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'backend/Unusedglobproof.v') diff --git a/backend/Unusedglobproof.v b/backend/Unusedglobproof.v index 7899a04c..d5f871a0 100644 --- a/backend/Unusedglobproof.v +++ b/backend/Unusedglobproof.v @@ -1373,9 +1373,9 @@ Proof. * apply Y with id; auto. * exists gd1; auto. * exists gd2; auto. - * eapply used_not_defined_2 in GD1; eauto. eapply used_not_defined_2 in GD2; eauto. + * eapply used_not_defined_2 in GD1; [ | eauto | congruence ]. + eapply used_not_defined_2 in GD2; [ | eauto | congruence ]. tauto. - congruence. } destruct E as [g LD]. left. unfold prog_defs_names; simpl. -- cgit