fix grammaro's pointed out by daniel
authorChris Lattner <sabre@nondot.org>
Sat, 27 Feb 2010 07:50:40 +0000 (07:50 +0000)
committerChris Lattner <sabre@nondot.org>
Sat, 27 Feb 2010 07:50:40 +0000 (07:50 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@97313 91177308-0d34-0410-b5e6-96231b3b80d8

lib/Transforms/Scalar/SCCP.cpp

index 5a0f62083efa3431aadfbf6e9e49c28694f0e518..7e37938868d685a18dba4b7dafc384be0e8f7181 100644 (file)
@@ -1921,9 +1921,9 @@ bool IPSCCP::runOnModule(Module &M) {
   //
   // Do this in two stages: first identify the functions we should process, then
   // actually zap their returns.  This is important because we can only do this
-  // the address of the function isn't taken.  In cases where a return is the
+  // if the address of the function isn't taken.  In cases where a return is the
   // last use of a function, the order of processing functions would affect
-  // whether we other functions are optimizable.
+  // whether other functions are optimizable.
   SmallVector<ReturnInst*, 8> ReturnsToZap;
   
   // TODO: Process multiple value ret instructions also.