Add more functions

llvm-svn: 9826
This commit is contained in:
Chris Lattner 2003-11-09 04:10:41 +00:00
parent 5011b956a9
commit 950c75f135
1 changed files with 8 additions and 0 deletions

View File

@ -126,6 +126,12 @@ static const char * const KnownExternalFunctions[] = {
"__strtod_l",
"__strtold_l",
// Math functions
"exp", "sqrt", "cbrt", "hypot",
"log", "log10", "pow",
"sin", "cos", "tan",
"asin", "acos", "atan", "atan2",
// Locale functions
"__uselocale",
"__newlocale",
@ -143,6 +149,8 @@ static const char * const KnownExternalFunctions[] = {
// Random stuff
"__assert_fail",
"__errno_location",
"clock", "time",
"__main",
};