diff options
author | Chris Lattner <sabre@nondot.org> | 2003-11-09 19:54:30 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2003-11-09 19:54:30 +0000 |
commit | ccc4b1a2d38674f2bd6c2263ac9503436bed5f49 (patch) | |
tree | af026ce57efc26c9c4e362537ce7de2200f563f8 /lib/Analysis/IPA/CallGraph.cpp | |
parent | 11dde85095d320e59619cda421a67390244fecc7 (diff) |
More additions
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@9834 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Analysis/IPA/CallGraph.cpp')
-rw-r--r-- | lib/Analysis/IPA/CallGraph.cpp | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/lib/Analysis/IPA/CallGraph.cpp b/lib/Analysis/IPA/CallGraph.cpp index 200e81fa26..8d44242050 100644 --- a/lib/Analysis/IPA/CallGraph.cpp +++ b/lib/Analysis/IPA/CallGraph.cpp @@ -66,9 +66,8 @@ static const char * const KnownExternalFunctions[] = { "ioctl", // Low-level stdc library functions - "abort", - "getenv", - "putenv", + "abort", "exit", + "getenv", "putenv", // Standard IO functions "printf", @@ -115,6 +114,7 @@ static const char * const KnownExternalFunctions[] = { "strncpy", "strncmp", "strcmp", + "strtok", "__strcoll_l", "__strxfrm_l", "__strftime_l", @@ -125,6 +125,7 @@ static const char * const KnownExternalFunctions[] = { "__strtof_l", "__strtod_l", "__strtold_l", + "isalpha", // Math functions "exp", "sqrt", "cbrt", "hypot", |