Skip to content

Commit

Permalink
Add _Float128 to lexer. References #8
Browse files Browse the repository at this point in the history
  • Loading branch information
michael-schwarz committed Nov 7, 2019
1 parent 225f65d commit 8a60315
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/frontc/clexer.mll
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@
*)
(* FrontC -- lexical analyzer
**
** 1.0 3.22.99 Hugues Cassé First version.
** 1.0 3.22.99 Hugues Cass� First version.
** 2.0 George Necula 12/12/00: Many extensions
*)
{
Expand Down Expand Up @@ -139,6 +139,7 @@ let init_lexicon _ =
("int", fun loc -> INT loc);
("float", fun loc -> FLOAT loc);
("__float128", fun loc -> FLOAT128 loc);
("_Float128", fun loc -> FLOAT128 loc);
("double", fun loc -> DOUBLE loc);
("void", fun loc -> VOID loc);
("enum", fun loc -> ENUM loc);
Expand Down

0 comments on commit 8a60315

Please sign in to comment.