aboutsummaryrefslogtreecommitdiffstats
path: root/cparser/GCC.ml
diff options
context:
space:
mode:
authorBernhard Schommer <bernhardschommer@gmail.com>2015-10-20 13:32:18 +0200
committerBernhard Schommer <bernhardschommer@gmail.com>2015-10-20 13:32:18 +0200
commit4d542bc7eafadb16b845cf05d1eb4988eb55ed0f (patch)
tree1961b41815fc6e392cc0bd2beeb0fb504bc160ce /cparser/GCC.ml
parent7a6bb90048db7a254e959b1e3c308bac5fe6c418 (diff)
downloadcompcert-kvx-4d542bc7eafadb16b845cf05d1eb4988eb55ed0f.tar.gz
compcert-kvx-4d542bc7eafadb16b845cf05d1eb4988eb55ed0f.zip
Updated PR by removing whitespaces. Bug 17450.
Diffstat (limited to 'cparser/GCC.ml')
-rw-r--r--cparser/GCC.ml16
1 files changed, 8 insertions, 8 deletions
diff --git a/cparser/GCC.ml b/cparser/GCC.ml
index 030f300b..f7f64a4e 100644
--- a/cparser/GCC.ml
+++ b/cparser/GCC.ml
@@ -65,7 +65,7 @@ let builtins = {
"__builtin_acosl", (longDoubleType, [ longDoubleType ], false);
"__builtin_alloca", (voidPtrType, [ uintType ], false);
-
+
"__builtin_asin", (doubleType, [ doubleType ], false);
"__builtin_asinf", (floatType, [ floatType ], false);
"__builtin_asinl", (longDoubleType, [ longDoubleType ], false);
@@ -76,7 +76,7 @@ let builtins = {
"__builtin_atan2", (doubleType, [ doubleType; doubleType ], false);
"__builtin_atan2f", (floatType, [ floatType; floatType ], false);
- "__builtin_atan2l", (longDoubleType, [ longDoubleType;
+ "__builtin_atan2l", (longDoubleType, [ longDoubleType;
longDoubleType ], false);
"__builtin_ceil", (doubleType, [ doubleType ], false);
@@ -133,12 +133,12 @@ let builtins = {
"__builtin_frexp", (doubleType, [ doubleType; intPtrType ], false);
"__builtin_frexpf", (floatType, [ floatType; intPtrType ], false);
- "__builtin_frexpl", (longDoubleType, [ longDoubleType;
+ "__builtin_frexpl", (longDoubleType, [ longDoubleType;
intPtrType ], false);
"__builtin_ldexp", (doubleType, [ doubleType; intType ], false);
"__builtin_ldexpf", (floatType, [ floatType; intType ], false);
- "__builtin_ldexpl", (longDoubleType, [ longDoubleType;
+ "__builtin_ldexpl", (longDoubleType, [ longDoubleType;
intType ], false);
"__builtin_log", (doubleType, [ doubleType ], false);
@@ -149,10 +149,10 @@ let builtins = {
"__builtin_log10f", (floatType, [ floatType ], false);
"__builtin_log10l", (longDoubleType, [ longDoubleType ], false);
- "__builtin_modff", (floatType, [ floatType;
+ "__builtin_modff", (floatType, [ floatType;
TPtr(floatType,[]) ], false);
- "__builtin_modfl", (longDoubleType, [ longDoubleType;
- TPtr(longDoubleType, []) ],
+ "__builtin_modfl", (longDoubleType, [ longDoubleType;
+ TPtr(longDoubleType, []) ],
false);
"__builtin_nan", (doubleType, [ charConstPtrType ], false);
@@ -210,7 +210,7 @@ let builtins = {
"__builtin_tanhl", (longDoubleType, [ longDoubleType ], false);
"__builtin_va_end", (voidType, [ voidPtrType ], false);
- "__builtin_varargs_start",
+ "__builtin_varargs_start",
(voidType, [ voidPtrType ], false);
(* When we elaborate builtin_stdarg_start/builtin_va_start,
second argument is passed by address *)