Adjust the file comment to read a little easier.

llvm-svn: 22163
diff --git a/llvm/lib/Transforms/IPO/SimplifyLibCalls.cpp b/llvm/lib/Transforms/IPO/SimplifyLibCalls.cpp
index 5c99a02..64e7477 100644
--- a/llvm/lib/Transforms/IPO/SimplifyLibCalls.cpp
+++ b/llvm/lib/Transforms/IPO/SimplifyLibCalls.cpp
@@ -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. 
 //
 //===----------------------------------------------------------------------===//