aboutsummaryrefslogtreecommitdiffstats
path: root/cparser/C.mli
diff options
context:
space:
mode:
authorJacques-Henri Jourdan <jacques-henri.jourdan@inria.fr>2015-11-04 03:04:21 +0100
committerJacques-Henri Jourdan <jacques-henri.jourdan@inria.fr>2015-11-04 03:04:21 +0100
commit5664fddcab15ef4482d583673c75e07bd1e96d0a (patch)
tree878b22860e69405ba5cf6fd2798731dac8ce660c /cparser/C.mli
parentb960c83725d7e185ac5c6e3c0d6043c7dcd2f556 (diff)
parentfe73ed58ef80da7c53c124302a608948fb190229 (diff)
downloadcompcert-5664fddcab15ef4482d583673c75e07bd1e96d0a.tar.gz
compcert-5664fddcab15ef4482d583673c75e07bd1e96d0a.zip
Merge remote-tracking branch 'origin/master' into parser_fix
Diffstat (limited to 'cparser/C.mli')
-rw-r--r--cparser/C.mli10
1 files changed, 5 insertions, 5 deletions
diff --git a/cparser/C.mli b/cparser/C.mli
index 72e1f787..8d8f2805 100644
--- a/cparser/C.mli
+++ b/cparser/C.mli
@@ -27,7 +27,7 @@ type ident =
(* Kinds of integers *)
-type ikind =
+type ikind =
| IBool (** [_Bool] *)
| IChar (** [char] *)
| ISChar (** [signed char] *)
@@ -39,12 +39,12 @@ type ikind =
| ILong (** [long] *)
| IULong (** [unsigned long] *)
| ILongLong (** [long long] (or [_int64] on Microsoft Visual C) *)
- | IULongLong (** [unsigned long long] (or [unsigned _int64] on Microsoft
+ | IULongLong (** [unsigned long long] (or [unsigned _int64] on Microsoft
Visual C) *)
(** Kinds of floating-point numbers*)
-type fkind =
+type fkind =
FFloat (** [float] *)
| FDouble (** [double] *)
| FLongDouble (** [long double] *)
@@ -73,7 +73,7 @@ type attr_arg =
| AInt of int64
| AString of string
-type attribute =
+type attribute =
| AConst
| AVolatile
| ARestrict
@@ -216,7 +216,7 @@ and stmt_desc =
| Sdecl of decl
| Sasm of attributes * string * asm_operand list * asm_operand list * string list
-and slabel =
+and slabel =
| Slabel of string
| Scase of exp
| Sdefault