summaryrefslogtreecommitdiff
path: root/cparser/Lexer.mll
diff options
context:
space:
mode:
authorGravatar xleroy <xleroy@fca1b0fc-160b-0410-b1d3-a4f43f01ea2e>2012-02-29 08:41:50 +0000
committerGravatar xleroy <xleroy@fca1b0fc-160b-0410-b1d3-a4f43f01ea2e>2012-02-29 08:41:50 +0000
commit55a23ce430234a40081222a213c5bb6b157b7552 (patch)
tree935422cdf08a8f4d684a53d8f6b5b822a22191cb /cparser/Lexer.mll
parent74b723e69c3713c8acc39b547a9daa9c51d05df0 (diff)
'typeof' is not a keyword
git-svn-id: https://yquem.inria.fr/compcert/svn/compcert/trunk@1829 fca1b0fc-160b-0410-b1d3-a4f43f01ea2e
Diffstat (limited to 'cparser/Lexer.mll')
-rw-r--r--cparser/Lexer.mll2
1 files changed, 2 insertions, 0 deletions
diff --git a/cparser/Lexer.mll b/cparser/Lexer.mll
index ab90bc2..424252e 100644
--- a/cparser/Lexer.mll
+++ b/cparser/Lexer.mll
@@ -144,7 +144,9 @@ let init_lexicon _ =
("asm", fun loc -> ASM loc);
("__typeof__", fun loc -> TYPEOF loc);
("__typeof", fun loc -> TYPEOF loc);
+(*
("typeof", fun loc -> TYPEOF loc);
+*)
("_Alignof", fun loc -> ALIGNOF loc);
("__alignof", fun loc -> ALIGNOF loc);
("__alignof__", fun loc -> ALIGNOF loc);