From e73d5db97cdb22cce2ee479469f62af3c4b6264a Mon Sep 17 00:00:00 2001 From: Xavier Leroy Date: Fri, 8 Jul 2016 14:43:57 +0200 Subject: Port to Coq 8.5pl2 Manual merging of branch jhjourdan:coq8.5. No other change un functionality. --- backend/Selectionproof.v | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'backend/Selectionproof.v') diff --git a/backend/Selectionproof.v b/backend/Selectionproof.v index aad3add4..a57e5ea6 100644 --- a/backend/Selectionproof.v +++ b/backend/Selectionproof.v @@ -865,9 +865,9 @@ Qed. Remark match_call_cont_cont: forall k k', match_call_cont k k' -> exists cunit hf, match_cont cunit hf k k'. Proof. - intros. refine (let cunit : Cminor.program := _ in _). + intros. simple refine (let cunit : Cminor.program := _ in _). econstructor. apply nil. apply nil. apply xH. - refine (let hf : helper_functions := _ in _). + simple refine (let hf : helper_functions := _ in _). econstructor; apply xH. exists cunit, hf; auto. Qed. -- cgit