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/RREtyping.v | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'backend/RREtyping.v') diff --git a/backend/RREtyping.v b/backend/RREtyping.v index 2501c7f0..539fb20b 100644 --- a/backend/RREtyping.v +++ b/backend/RREtyping.v @@ -91,9 +91,9 @@ Proof. assert (WC: wt_code f c) by (red; auto with coqlib). clear H. inv WI; auto 10 with linearty. - destruct (is_incoming s) as []_eqn. auto with linearty. + destruct (is_incoming s) eqn:?. auto with linearty. destruct (contains_equation s r eqs). auto with linearty. - destruct (find_reg_containing s eqs) as [r'|]_eqn; auto with linearty. + destruct (find_reg_containing s eqs) as [r'|] eqn:?; auto with linearty. assert (mreg_type r' = mreg_type r). exploit H0. eapply find_reg_containing_sound; eauto. simpl. congruence. destruct (safe_move_insertion c); auto 10 with linearty. -- cgit