diff options
author | Chad Rosier <mcrosier@apple.com> | 2011-11-30 19:19:00 +0000 |
---|---|---|
committer | Chad Rosier <mcrosier@apple.com> | 2011-11-30 19:19:00 +0000 |
commit | 738da252ab9211ca0791b8f5f4fb2c2a3d62f301 (patch) | |
tree | 86c91085d98432be077bf8db65ac44a23fde8bb6 /llvm/lib/Target/TargetLibraryInfo.cpp | |
parent | d0cff1ea9b90e692c578c9964e065d67842ee5df (diff) | |
download | bcm5719-llvm-738da252ab9211ca0791b8f5f4fb2c2a3d62f301.tar.gz bcm5719-llvm-738da252ab9211ca0791b8f5f4fb2c2a3d62f301.zip |
Add a few functions to TargetLibraryInfo.
llvm-svn: 145508
Diffstat (limited to 'llvm/lib/Target/TargetLibraryInfo.cpp')
-rw-r--r-- | llvm/lib/Target/TargetLibraryInfo.cpp | 52 |
1 files changed, 50 insertions, 2 deletions
diff --git a/llvm/lib/Target/TargetLibraryInfo.cpp b/llvm/lib/Target/TargetLibraryInfo.cpp index ba318e181fc..f21e7ff9bec 100644 --- a/llvm/lib/Target/TargetLibraryInfo.cpp +++ b/llvm/lib/Target/TargetLibraryInfo.cpp @@ -22,18 +22,66 @@ char TargetLibraryInfo::ID = 0; const char* TargetLibraryInfo::StandardNames[LibFunc::NumLibFuncs] = { + "acos", + "acosl", + "acosf", + "asin", + "asinl", + "asinf", + "atan", + "atanl", + "atanf", + "ceil", + "ceill", + "ceilf", + "cos", + "cosl", + "cosf", + "cosh", + "coshl", + "coshf", + "exp", + "expl", + "expf", + "exp2", + "exp2l", + "exp2f", + "expm1", + "expm1l", + "expl1f", + "fabs", + "fabsl", + "fabsf", + "floor", + "floorl", + "floorf", "fiprintf", "fputs", "fwrite", "iprintf", + "log", + "logl", + "logf", + "log2", + "log2l", + "log2f", + "log10", + "log10l", + "log10f", + "log1p", + "log1pl", + "log1pf", "memcpy", "memmove", "memset", "memset_pattern16", + "pow", + "powf", + "powl", "siprintf", "sqrt", - "sqrtf", - "sqrtl" + "sqrtl", + "sqrtf" }; /// initialize - Initialize the set of available library functions based on the |