aboutsummaryrefslogtreecommitdiffstats
path: root/mppa_k1c/lib
diff options
context:
space:
mode:
authorCyril SIX <cyril.six@kalray.eu>2019-02-05 13:27:26 +0100
committerCyril SIX <cyril.six@kalray.eu>2019-02-05 16:06:57 +0100
commit2b226da49ea711bfe8139a0fae7c44cb432e2f61 (patch)
tree20283c53b9fec87454cef2043eaeac8b4fd9d09b /mppa_k1c/lib
parentf86d2dbedc7841ad25f5dda825877f087dca4986 (diff)
downloadcompcert-kvx-2b226da49ea711bfe8139a0fae7c44cb432e2f61.tar.gz
compcert-kvx-2b226da49ea711bfe8139a0fae7c44cb432e2f61.zip
Removing the low_half axiom
Diffstat (limited to 'mppa_k1c/lib')
-rw-r--r--mppa_k1c/lib/Asmblockgenproof0.v8
1 files changed, 4 insertions, 4 deletions
diff --git a/mppa_k1c/lib/Asmblockgenproof0.v b/mppa_k1c/lib/Asmblockgenproof0.v
index 443e8757..8c299f88 100644
--- a/mppa_k1c/lib/Asmblockgenproof0.v
+++ b/mppa_k1c/lib/Asmblockgenproof0.v
@@ -937,11 +937,11 @@ Lemma exec_basic_instr_pc:
Proof.
intros. destruct b; try destruct i; try destruct i.
all: try (inv H; Simpl).
- all: try (unfold exec_load in H1; destruct (Mem.loadv _ _ _); [inv H1; Simpl | discriminate]).
- all: try (unfold exec_store in H1; destruct (Mem.storev _ _ _); [inv H1; auto | discriminate]).
+ all: try (unfold exec_load in H1; destruct (eval_offset ge ofs); try discriminate; destruct (Mem.loadv _ _ _); [inv H1; Simpl | discriminate]).
+ all: try (unfold exec_store in H1; destruct (eval_offset ge ofs); try discriminate; destruct (Mem.storev _ _ _); [inv H1; auto | discriminate]).
destruct (Mem.alloc _ _ _). destruct (Mem.store _ _ _ _ _). inv H1. Simpl. discriminate.
- destruct (rs1 _); try discriminate.
- destruct (Mem.free _ _ _ _). inv H0. Simpl. discriminate.
+ destruct (Mem.loadv _ _ _); try discriminate. destruct (rs1 _); try discriminate.
+ destruct (Mem.free _ _ _ _). inv H1. Simpl. discriminate.
destruct rs; try discriminate. inv H1. Simpl.
destruct rd; try discriminate. inv H1; Simpl.
auto.