[llvm-commits] CVS: llvm/lib/Analysis/IPA/CallGraph.cpp
Chris Lattner
lattner at cs.uiuc.edu
Sat Nov 8 22:11:01 PST 2003
Changes in directory llvm/lib/Analysis/IPA:
CallGraph.cpp updated: 1.31 -> 1.32
---
Log message:
Add more functions
---
Diffs of the changes: (+8 -0)
Index: llvm/lib/Analysis/IPA/CallGraph.cpp
diff -u llvm/lib/Analysis/IPA/CallGraph.cpp:1.31 llvm/lib/Analysis/IPA/CallGraph.cpp:1.32
--- llvm/lib/Analysis/IPA/CallGraph.cpp:1.31 Sat Nov 8 22:00:59 2003
+++ llvm/lib/Analysis/IPA/CallGraph.cpp Sat Nov 8 22:10:41 2003
@@ -126,6 +126,12 @@
"__strtod_l",
"__strtold_l",
+ // Math functions
+ "exp", "sqrt", "cbrt", "hypot",
+ "log", "log10", "pow",
+ "sin", "cos", "tan",
+ "asin", "acos", "atan", "atan2",
+
// Locale functions
"__uselocale",
"__newlocale",
@@ -143,6 +149,8 @@
// Random stuff
"__assert_fail",
"__errno_location",
+ "clock", "time",
+ "__main",
};
More information about the llvm-commits
mailing list