diff options
author | Nuno Lopes <nunoplopes@sapo.pt> | 2012-07-24 21:00:36 +0000 |
---|---|---|
committer | Nuno Lopes <nunoplopes@sapo.pt> | 2012-07-24 21:00:36 +0000 |
commit | 8d32463a9fa2aba9de552350a5019099edf0b90d (patch) | |
tree | 00c84e992a2e6cd6ec09bf0b359c31139bfc7ee0 /lib/Target/TargetLibraryInfo.cpp | |
parent | 23a62cbaf5ea046c8f6e5581c460f8618396d6eb (diff) |
add a few more functions to TargetLibraryInfo:
fputc, memchr, memcmp, putchar, puts, strchr, strncmp
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@160690 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Target/TargetLibraryInfo.cpp')
-rw-r--r-- | lib/Target/TargetLibraryInfo.cpp | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/lib/Target/TargetLibraryInfo.cpp b/lib/Target/TargetLibraryInfo.cpp index 898c0e7b8f..e0a4eccc97 100644 --- a/lib/Target/TargetLibraryInfo.cpp +++ b/lib/Target/TargetLibraryInfo.cpp @@ -67,6 +67,7 @@ const char* TargetLibraryInfo::StandardNames[LibFunc::NumLibFuncs] = "fmod", "fmodl", "fmodf", + "fputc", "fputs", "fwrite", "iprintf", @@ -82,6 +83,8 @@ const char* TargetLibraryInfo::StandardNames[LibFunc::NumLibFuncs] = "log1p", "log1pl", "log1pf", + "memchr", + "memcmp", "memcpy", "memmove", "memset", @@ -92,6 +95,8 @@ const char* TargetLibraryInfo::StandardNames[LibFunc::NumLibFuncs] = "pow", "powf", "powl", + "putchar", + "puts", "rint", "rintf", "rintl", @@ -109,9 +114,11 @@ const char* TargetLibraryInfo::StandardNames[LibFunc::NumLibFuncs] = "sqrtl", "sqrtf", "strcat", + "strchr", "strcpy", "strlen", "strncat", + "strncmp", "strncpy", "strnlen", "tan", |