aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorxleroy <xleroy@fca1b0fc-160b-0410-b1d3-a4f43f01ea2e>2010-09-21 08:10:39 +0000
committerxleroy <xleroy@fca1b0fc-160b-0410-b1d3-a4f43f01ea2e>2010-09-21 08:10:39 +0000
commit771e05d46a08d412ea05adf7b147e0291215b92b (patch)
tree8994536dff311257fb1aa9668e844fd0d2361a1b
parentf7270a57205abd7314203eaef9b752a7abd13ed7 (diff)
downloadcompcert-771e05d46a08d412ea05adf7b147e0291215b92b.tar.gz
compcert-771e05d46a08d412ea05adf7b147e0291215b92b.zip
Typo in doc comment
git-svn-id: https://yquem.inria.fr/compcert/svn/compcert/trunk@1511 fca1b0fc-160b-0410-b1d3-a4f43f01ea2e
-rw-r--r--backend/CastOptim.v4
1 files changed, 2 insertions, 2 deletions
diff --git a/backend/CastOptim.v b/backend/CastOptim.v
index 3ae5ab0b..545564d8 100644
--- a/backend/CastOptim.v
+++ b/backend/CastOptim.v
@@ -32,11 +32,11 @@ Require Import Kildall.
Inductive approx : Type :=
| Unknown (**r any value *)
| Int7 (**r [[0,127]] *)
- | Int8s (**r [[-128,127] *)
+ | Int8s (**r [[-128,127]] *)
| Int8u (**r [[0,255]] *)
| Int15 (**r [[0,32767]] *)
| Int16s (**r [[-32768,32767]] *)
- | Int16u (**r [[0,65535] *)
+ | Int16u (**r [[0,65535]] *)
| Single (**r single-precision float *)
| Novalue. (**r empty *)