aboutsummaryrefslogtreecommitdiffstats
path: root/lib/Integers.v
diff options
context:
space:
mode:
authorxleroy <xleroy@fca1b0fc-160b-0410-b1d3-a4f43f01ea2e>2013-03-10 12:13:12 +0000
committerxleroy <xleroy@fca1b0fc-160b-0410-b1d3-a4f43f01ea2e>2013-03-10 12:13:12 +0000
commit02779dbc71c0f6985427c47ec05dd25b44dd859c (patch)
treecdff116e8c7e5d82ae6943428018f39d1ce81d60 /lib/Integers.v
parente29b0c71f446ea6267711c7cc19294fd93fb81ad (diff)
downloadcompcert-kvx-02779dbc71c0f6985427c47ec05dd25b44dd859c.tar.gz
compcert-kvx-02779dbc71c0f6985427c47ec05dd25b44dd859c.zip
Glasnost: making transparent a number of definitions that were opaque
for no good reason. git-svn-id: https://yquem.inria.fr/compcert/svn/compcert/trunk@2140 fca1b0fc-160b-0410-b1d3-a4f43f01ea2e
Diffstat (limited to 'lib/Integers.v')
-rw-r--r--lib/Integers.v4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/Integers.v b/lib/Integers.v
index 2c74e800..af9decdb 100644
--- a/lib/Integers.v
+++ b/lib/Integers.v
@@ -227,7 +227,7 @@ Proof.
intros. destruct x; destruct y. destruct (zeq intval0 intval1).
left. apply mkint_eq. auto.
right. red; intro. injection H. exact n.
-Qed.
+Defined.
(** * Arithmetic and logical operations over machine integers *)
@@ -3711,4 +3711,4 @@ Module Int64 := Make(Wordsize_64).
Notation int64 := Int64.int.
-
+Global Opaque Int.repr Int64.repr Byte.repr.