forked from OSchip/llvm-project
Builtins.def: Explicitly undef finitef, to appease mingw. It defines finitef as alias of _finitef.
llvm-svn: 281582
This commit is contained in:
parent
b2edd11f30
commit
d92f9cc079
|
@ -944,6 +944,10 @@ LIBBUILTIN(fabs, "dd", "fnc", "math.h", ALL_LANGUAGES)
|
|||
LIBBUILTIN(fabsf, "ff", "fnc", "math.h", ALL_LANGUAGES)
|
||||
LIBBUILTIN(fabsl, "LdLd", "fnc", "math.h", ALL_LANGUAGES)
|
||||
|
||||
// Some systems define finitef as alias of _finitef.
|
||||
#if defined (finitef)
|
||||
#undef finitef
|
||||
#endif
|
||||
LIBBUILTIN(finite, "id", "fnc", "math.h", GNU_LANG)
|
||||
LIBBUILTIN(finitef, "if", "fnc", "math.h", GNU_LANG)
|
||||
LIBBUILTIN(finitel, "iLd", "fnc", "math.h", GNU_LANG)
|
||||
|
|
Loading…
Reference in New Issue