[llvm] r228700 - Two comment typo fixes in lib/CodeGen/SelectionDAG/DAGCombiner.cpp.

Jonas Paulsson jonas.paulsson at ericsson.com
Tue Feb 10 07:34:30 PST 2015


Author: jonpa
Date: Tue Feb 10 09:34:29 2015
New Revision: 228700

URL: http://llvm.org/viewvc/llvm-project?rev=228700&view=rev
Log:
Two comment typo fixes in lib/CodeGen/SelectionDAG/DAGCombiner.cpp.

Modified:
    llvm/trunk/lib/CodeGen/SelectionDAG/DAGCombiner.cpp

Modified: llvm/trunk/lib/CodeGen/SelectionDAG/DAGCombiner.cpp
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/lib/CodeGen/SelectionDAG/DAGCombiner.cpp?rev=228700&r1=228699&r2=228700&view=diff
==============================================================================
--- llvm/trunk/lib/CodeGen/SelectionDAG/DAGCombiner.cpp (original)
+++ llvm/trunk/lib/CodeGen/SelectionDAG/DAGCombiner.cpp Tue Feb 10 09:34:29 2015
@@ -1501,7 +1501,7 @@ SDValue DAGCombiner::visitTokenFactor(SD
       switch (Op.getOpcode()) {
       case ISD::EntryToken:
         // Entry tokens don't need to be added to the list. They are
-        // rededundant.
+        // redundant.
         Changed = true;
         break;
 
@@ -1530,7 +1530,7 @@ SDValue DAGCombiner::visitTokenFactor(SD
 
   SDValue Result;
 
-  // If we've change things around then replace token factor.
+  // If we've changed things around then replace token factor.
   if (Changed) {
     if (Ops.empty()) {
       // The entry token is the only possible outcome.





More information about the llvm-commits mailing list