[llvm] r179542 - Fix a typo in comment.

Jim Grosbach grosbach at apple.com
Mon Apr 15 10:40:48 PDT 2013


Author: grosbach
Date: Mon Apr 15 12:40:48 2013
New Revision: 179542

URL: http://llvm.org/viewvc/llvm-project?rev=179542&view=rev
Log:
Fix a typo in comment.

Modified:
    llvm/trunk/lib/Transforms/Scalar/CodeGenPrepare.cpp

Modified: llvm/trunk/lib/Transforms/Scalar/CodeGenPrepare.cpp
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/lib/Transforms/Scalar/CodeGenPrepare.cpp?rev=179542&r1=179541&r2=179542&view=diff
==============================================================================
--- llvm/trunk/lib/Transforms/Scalar/CodeGenPrepare.cpp (original)
+++ llvm/trunk/lib/Transforms/Scalar/CodeGenPrepare.cpp Mon Apr 15 12:40:48 2013
@@ -1761,7 +1761,7 @@ bool CodeGenPrepare::OptimizeExtUses(Ins
   if (!DefIsLiveOut)
     return false;
 
-  // Make sure non of the uses are PHI nodes.
+  // Make sure none of the uses are PHI nodes.
   for (Value::use_iterator UI = Src->use_begin(), E = Src->use_end();
        UI != E; ++UI) {
     Instruction *User = cast<Instruction>(*UI);





More information about the llvm-commits mailing list