mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-04-05 17:39:16 +00:00
TargetLibraryInfo: add strn?cat, strn?cpy, and strn?len
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@160678 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
9827c8e1c9
commit
0841e63ede
@ -187,6 +187,18 @@ namespace llvm {
|
||||
sqrtl,
|
||||
/// float sqrtf(float x);
|
||||
sqrtf,
|
||||
/// char *strcat(char *s1, const char *s2);
|
||||
strcat,
|
||||
/// char *strcpy(char *s1, const char *s2);
|
||||
strcpy,
|
||||
/// size_t strlen(const char *s);
|
||||
strlen,
|
||||
/// char *strncat(char *s1, const char *s2, size_t n);
|
||||
strncat,
|
||||
/// char *strncpy(char *s1, const char *s2, size_t n);
|
||||
strncpy,
|
||||
/// size_t strnlen(const char *s, size_t maxlen);
|
||||
strnlen,
|
||||
/// double tan(double x);
|
||||
tan,
|
||||
/// long double tanl(long double x);
|
||||
|
@ -108,6 +108,12 @@ const char* TargetLibraryInfo::StandardNames[LibFunc::NumLibFuncs] =
|
||||
"sqrt",
|
||||
"sqrtl",
|
||||
"sqrtf",
|
||||
"strcat",
|
||||
"strcpy",
|
||||
"strlen",
|
||||
"strncat",
|
||||
"strncpy",
|
||||
"strnlen",
|
||||
"tan",
|
||||
"tanl",
|
||||
"tanf",
|
||||
|
Loading…
x
Reference in New Issue
Block a user