More additions
authorChris Lattner <sabre@nondot.org>
Sun, 9 Nov 2003 19:54:30 +0000 (19:54 +0000)
committerChris Lattner <sabre@nondot.org>
Sun, 9 Nov 2003 19:54:30 +0000 (19:54 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@9834 91177308-0d34-0410-b5e6-96231b3b80d8

lib/Analysis/IPA/CallGraph.cpp

index 200e81fa26c25f49a5c9aec6aa9fa7ae4c2dd1a9..8d442420500af8954117f776cce9942d4e0085af 100644 (file)
@@ -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",