Adjust the file comment to read a little easier.
authorReid Spencer <rspencer@reidspencer.com>
Sat, 21 May 2005 00:57:44 +0000 (00:57 +0000)
committerReid Spencer <rspencer@reidspencer.com>
Sat, 21 May 2005 00:57:44 +0000 (00:57 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@22163 91177308-0d34-0410-b5e6-96231b3b80d8

lib/Transforms/IPO/SimplifyLibCalls.cpp

index 5c99a025f0bff418d1a046244a3a65c48757f102..64e7477adcb7c3046e65c7c640f6aa30ca919022 100644 (file)
@@ -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. 
 //
 //===----------------------------------------------------------------------===//