summaryrefslogtreecommitdiff
path: root/common
diff options
context:
space:
mode:
Diffstat (limited to 'common')
-rw-r--r--common/Values.v5
1 files changed, 5 insertions, 0 deletions
diff --git a/common/Values.v b/common/Values.v
index 54eac86..1e274ad 100644
--- a/common/Values.v
+++ b/common/Values.v
@@ -740,6 +740,11 @@ Proof.
decEq. apply Int.xor_assoc.
Qed.
+Theorem not_xor: forall x, notint x = xor x (Vint Int.mone).
+Proof.
+ destruct x; simpl; auto.
+Qed.
+
Theorem shl_mul: forall x y, mul x (shl Vone y) = shl x y.
Proof.
destruct x; destruct y; simpl; auto.