From 056068abd228fefab4951a61700aa6d54fb88287 Mon Sep 17 00:00:00 2001 From: xleroy Date: Tue, 29 Jan 2013 09:10:29 +0000 Subject: Ported to Coq 8.4pl1. Merge of branches/coq-8.4. git-svn-id: https://yquem.inria.fr/compcert/svn/compcert/trunk@2101 fca1b0fc-160b-0410-b1d3-a4f43f01ea2e --- backend/Inliningspec.v | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'backend/Inliningspec.v') diff --git a/backend/Inliningspec.v b/backend/Inliningspec.v index 014986d7..06826c24 100644 --- a/backend/Inliningspec.v +++ b/backend/Inliningspec.v @@ -498,7 +498,7 @@ Proof. (* tailcall *) destruct (can_inline fe s1) as [|id f P Q]. (* not inlined *) - destruct (retinfo ctx) as [[rpc rreg] | ]_eqn. + destruct (retinfo ctx) as [[rpc rreg] | ] eqn:?. (* turned into a call *) eapply tr_tailcall_call; eauto. (* preserved *) @@ -526,7 +526,7 @@ Proof. red; simpl. subst s2; simpl in *; xomega. red; auto. (* return *) - destruct (retinfo ctx) as [[rpc rreg] | ]_eqn. + destruct (retinfo ctx) as [[rpc rreg] | ] eqn:?. (* inlined *) eapply tr_return_inlined; eauto. (* unchanged *) @@ -671,7 +671,7 @@ Lemma transf_function_spec: forall f f', transf_function fenv f = OK f' -> tr_function f f'. Proof. intros. unfold transf_function in H. - destruct (expand_function fenv f initstate) as [ctx s i]_eqn. + destruct (expand_function fenv f initstate) as [ctx s i] eqn:?. destruct (zle (st_stksize s) Int.max_unsigned); inv H. monadInv Heqr. set (ctx := initcontext x x0 (max_def_function f) (fn_stacksize f)) in *. Opaque initstate. -- cgit