aboutsummaryrefslogtreecommitdiffstats
path: root/backend/CSE.v
diff options
context:
space:
mode:
Diffstat (limited to 'backend/CSE.v')
-rw-r--r--backend/CSE.v7
1 files changed, 2 insertions, 5 deletions
diff --git a/backend/CSE.v b/backend/CSE.v
index b7e19c1b..49b84899 100644
--- a/backend/CSE.v
+++ b/backend/CSE.v
@@ -72,12 +72,9 @@ Definition eq_rhs (x y: rhs) : {x=y}+{x<>y}.
Proof.
generalize Int.eq_dec; intro.
generalize Float.eq_dec; intro.
- assert (forall (x y: ident), {x=y}+{x<>y}). exact peq.
- assert (forall (x y: comparison), {x=y}+{x<>y}). decide equality.
- assert (forall (x y: condition), {x=y}+{x<>y}). decide equality.
- assert (forall (x y: operation), {x=y}+{x<>y}). decide equality.
+ generalize eq_operation; intro.
+ generalize eq_addressing; intro.
assert (forall (x y: memory_chunk), {x=y}+{x<>y}). decide equality.
- assert (forall (x y: addressing), {x=y}+{x<>y}). decide equality.
generalize eq_valnum; intro.
generalize eq_list_valnum; intro.
decide equality.