diff options
| author | Nuno Lopes <nunoplopes@sapo.pt> | 2012-07-24 17:25:06 +0000 |
|---|---|---|
| committer | Nuno Lopes <nunoplopes@sapo.pt> | 2012-07-24 17:25:06 +0000 |
| commit | 20f5a7aeb7ba21067498489282197be2260a0d3b (patch) | |
| tree | af3f882817ae21fe4f97a0665a70d14e277bc09d /llvm/lib | |
| parent | 19bde907b5de2b686ac59c3cac7a7d2da2d43cff (diff) | |
| download | bcm5719-llvm-20f5a7aeb7ba21067498489282197be2260a0d3b.tar.gz bcm5719-llvm-20f5a7aeb7ba21067498489282197be2260a0d3b.zip | |
TargetLibraryInfo: add strn?cat, strn?cpy, and strn?len
llvm-svn: 160678
Diffstat (limited to 'llvm/lib')
| -rw-r--r-- | llvm/lib/Target/TargetLibraryInfo.cpp | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/llvm/lib/Target/TargetLibraryInfo.cpp b/llvm/lib/Target/TargetLibraryInfo.cpp index ec95ad4deea..898c0e7b8fa 100644 --- a/llvm/lib/Target/TargetLibraryInfo.cpp +++ b/llvm/lib/Target/TargetLibraryInfo.cpp @@ -108,6 +108,12 @@ const char* TargetLibraryInfo::StandardNames[LibFunc::NumLibFuncs] = "sqrt", "sqrtl", "sqrtf", + "strcat", + "strcpy", + "strlen", + "strncat", + "strncpy", + "strnlen", "tan", "tanl", "tanf", |

