[llvm-commits] CVS: llvm/lib/Transforms/IPO/SimplifyLibCalls.cpp

unknown_user at cs.uiuc.edu unknown_user at cs.uiuc.edu
Fri May 20 17:57:54 PDT 2005



Changes in directory llvm/lib/Transforms/IPO:

SimplifyLibCalls.cpp updated: 1.40 -> 1.41
---
Log message:

Adjust the file comment to read a little easier.


---
Diffs of the changes:  (+7 -6)

 SimplifyLibCalls.cpp |   13 +++++++------
 1 files changed, 7 insertions(+), 6 deletions(-)


Index: llvm/lib/Transforms/IPO/SimplifyLibCalls.cpp
diff -u llvm/lib/Transforms/IPO/SimplifyLibCalls.cpp:1.40 llvm/lib/Transforms/IPO/SimplifyLibCalls.cpp:1.41
--- llvm/lib/Transforms/IPO/SimplifyLibCalls.cpp:1.40	Fri May 20 19:39:30 2005
+++ llvm/lib/Transforms/IPO/SimplifyLibCalls.cpp	Fri May 20 19:57:44 2005
@@ -7,12 +7,13 @@
 //
 //===----------------------------------------------------------------------===//
 //
-// This file implements a variety of small optimizations for calls to specific
-// well-known (e.g. runtime library) function calls. For example, a call to the
-// function "exit(3)" that occurs within the main() function can be transformed
-// into a simple "return 3" instruction. Any optimization that takes this form
-// (replace call to library function with simpler code that provides same 
-// result) belongs in this file. 
+// This file implements a module pass that applies a variety of small 
+// optimizations for calls to specific well-known function calls (e.g. runtime 
+// library functions). For example, a call to the function "exit(3)" that 
+// occurs within the main() function can be transformed into a simple "return 3"
+// instruction. Any optimization that takes this form (replace call to library 
+// function with simpler code that provides the same result) belongs in this 
+// file. 
 //
 //===----------------------------------------------------------------------===//
 






More information about the llvm-commits mailing list