aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--mppa_k1c/Asmblock.v8
1 files changed, 4 insertions, 4 deletions
diff --git a/mppa_k1c/Asmblock.v b/mppa_k1c/Asmblock.v
index 9da85fd0..6235589c 100644
--- a/mppa_k1c/Asmblock.v
+++ b/mppa_k1c/Asmblock.v
@@ -405,10 +405,10 @@ Lemma non_empty_bblock_refl:
non_empty_bblock body exit ->
Is_true (non_empty_bblockb body exit).
Proof.
-(* intros. destruct body; destruct exit.
- all: unfold non_empty_bblock; try (left; discriminate); try (right; discriminate).
- simpl in H. inv H. *)
-Admitted.
+ intros. destruct body; destruct exit.
+ all: simpl; auto.
+ inv H; contradiction.
+Qed.
(* Definition builtin_alone (body: list basic) (exit: option control) := forall ef args res,
exit = Some (PExpand (Pbuiltin ef args res)) -> body = nil.