aboutsummaryrefslogtreecommitdiffstats
path: root/cparser/Parser.mly
diff options
context:
space:
mode:
Diffstat (limited to 'cparser/Parser.mly')
-rw-r--r--cparser/Parser.mly3
1 files changed, 1 insertions, 2 deletions
diff --git a/cparser/Parser.mly b/cparser/Parser.mly
index 0eebb84a..83b1984c 100644
--- a/cparser/Parser.mly
+++ b/cparser/Parser.mly
@@ -199,14 +199,13 @@ let transformOffsetOf (speclist, dtype) member =
let sizeofType = [SpecType Tunsigned], JUSTBASE in
let resultExpr = CAST (sizeofType, SINGLE_INIT addrExpr) in
resultExpr
-
%}
%token <string * Cabs.cabsloc> IDENT
%token <int64 list * Cabs.cabsloc> CST_CHAR
%token <int64 list * Cabs.cabsloc> CST_WCHAR
%token <string * Cabs.cabsloc> CST_INT
-%token <string * Cabs.cabsloc> CST_FLOAT
+%token <Cabs.floatInfo * Cabs.cabsloc> CST_FLOAT
%token <string * Cabs.cabsloc> NAMED_TYPE
/* Each character is its own list element, and the terminating nul is not