summaryrefslogtreecommitdiff
path: root/cparser/GCC.ml
diff options
context:
space:
mode:
authorGravatar xleroy <xleroy@fca1b0fc-160b-0410-b1d3-a4f43f01ea2e>2014-04-29 13:58:18 +0000
committerGravatar xleroy <xleroy@fca1b0fc-160b-0410-b1d3-a4f43f01ea2e>2014-04-29 13:58:18 +0000
commitf1d236b83003eda71e12840732d159fd23b1b771 (patch)
tree0edad805ea24f7b626d2c6fee9fc50da23acfc47 /cparser/GCC.ml
parent39df8fb19bacb38f317abf06de432b83296dfdd1 (diff)
Integration of Jacques-Henri Jourdan's verified parser.
(Merge of branch newparser.) git-svn-id: https://yquem.inria.fr/compcert/svn/compcert/trunk@2469 fca1b0fc-160b-0410-b1d3-a4f43f01ea2e
Diffstat (limited to 'cparser/GCC.ml')
-rw-r--r--cparser/GCC.ml5
1 files changed, 0 insertions, 5 deletions
diff --git a/cparser/GCC.ml b/cparser/GCC.ml
index 17b718b..1bcbbbc 100644
--- a/cparser/GCC.ml
+++ b/cparser/GCC.ml
@@ -201,11 +201,6 @@ let builtins = {
"__builtin_strncpy", (charPtrType, [ charPtrType; charConstPtrType; sizeType ], false);
"__builtin_strspn", (intType, [ charConstPtrType; charConstPtrType ], false);
"__builtin_strpbrk", (charPtrType, [ charConstPtrType; charConstPtrType ], false);
- (* When we parse builtin_types_compatible_p, we change its interface *)
- "__builtin_types_compatible_p",
- (intType, [ uintType; (* Sizeof the type *)
- uintType (* Sizeof the type *) ],
- false);
"__builtin_tan", (doubleType, [ doubleType ], false);
"__builtin_tanf", (floatType, [ floatType ], false);
"__builtin_tanl", (longDoubleType, [ longDoubleType ], false);