[llvm] r262961 - fix typo; NFC

Sanjay Patel via llvm-commits llvm-commits at lists.llvm.org
Tue Mar 8 13:41:13 PST 2016


Author: spatel
Date: Tue Mar  8 15:41:13 2016
New Revision: 262961

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

Modified:
    llvm/trunk/include/llvm/CodeGen/BasicTTIImpl.h

Modified: llvm/trunk/include/llvm/CodeGen/BasicTTIImpl.h
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/include/llvm/CodeGen/BasicTTIImpl.h?rev=262961&r1=262960&r2=262961&view=diff
==============================================================================
--- llvm/trunk/include/llvm/CodeGen/BasicTTIImpl.h (original)
+++ llvm/trunk/include/llvm/CodeGen/BasicTTIImpl.h Tue Mar  8 15:41:13 2016
@@ -307,8 +307,8 @@ public:
     }
 
     if (!TLI->isOperationExpand(ISD, LT.second)) {
-      // If the operation is custom lowered then assume
-      // thare the code is twice as expensive.
+      // If the operation is custom lowered, then assume that the code is twice
+      // as expensive.
       return LT.first * 2 * OpCost;
     }
 




More information about the llvm-commits mailing list