[llvm] r254442 - fix typo; NFC

Sanjay Patel via llvm-commits llvm-commits at lists.llvm.org
Tue Dec 1 11:19:20 PST 2015


Author: spatel
Date: Tue Dec  1 13:19:18 2015
New Revision: 254442

URL: http://llvm.org/viewvc/llvm-project?rev=254442&view=rev
Log:
fix typo; NFC

Modified:
    llvm/trunk/lib/CodeGen/TwoAddressInstructionPass.cpp

Modified: llvm/trunk/lib/CodeGen/TwoAddressInstructionPass.cpp
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/lib/CodeGen/TwoAddressInstructionPass.cpp?rev=254442&r1=254441&r2=254442&view=diff
==============================================================================
--- llvm/trunk/lib/CodeGen/TwoAddressInstructionPass.cpp (original)
+++ llvm/trunk/lib/CodeGen/TwoAddressInstructionPass.cpp Tue Dec  1 13:19:18 2015
@@ -1181,7 +1181,7 @@ bool TwoAddressInstructionPass::tryInstr
   unsigned OtherOpIdx = MI->getDesc().getNumDefs();
   for (; OtherOpIdx < OpsNum; OtherOpIdx++) {
     // The call of findCommutedOpIndices below only checks if BaseOpIdx
-    // and OtherOpIdx are commutable, it does not really searches for
+    // and OtherOpIdx are commutable, it does not really search for
     // other commutable operands and does not change the values of passed
     // variables.
     if (OtherOpIdx == BaseOpIdx ||




More information about the llvm-commits mailing list