Add builtin declarations for the variants of sin and cos.

llvm-svn: 72718
This commit is contained in:
Eli Friedman 2009-06-02 07:06:02 +00:00
parent f83c258eae
commit cb8302ee3e
1 changed files with 8 additions and 0 deletions

View File

@ -376,5 +376,13 @@ LIBBUILTIN(sqrt, "dd", "fe", "math.h")
LIBBUILTIN(sqrtl, "LdLd", "fe", "math.h") LIBBUILTIN(sqrtl, "LdLd", "fe", "math.h")
LIBBUILTIN(sqrtf, "ff", "fe", "math.h") LIBBUILTIN(sqrtf, "ff", "fe", "math.h")
LIBBUILTIN(sin, "dd", "fe", "math.h")
LIBBUILTIN(sinl, "LdLd", "fe", "math.h")
LIBBUILTIN(sinf, "ff", "fe", "math.h")
LIBBUILTIN(cos, "dd", "fe", "math.h")
LIBBUILTIN(cosl, "LdLd", "fe", "math.h")
LIBBUILTIN(cosf, "ff", "fe", "math.h")
#undef BUILTIN #undef BUILTIN
#undef LIBBUILTIN #undef LIBBUILTIN