diff options
author | Sanjay Patel <spatel@rotateright.com> | 2016-03-08 21:41:13 +0000 |
---|---|---|
committer | Sanjay Patel <spatel@rotateright.com> | 2016-03-08 21:41:13 +0000 |
commit | 8d950ce18c6d8ab3b43a4950cecbb17a83914910 (patch) | |
tree | 962511b9a8db859d5d0365a6b0dfd87b0cacf67e /llvm | |
parent | bb5d862a84817e59cf971b1064835508c13f5bb0 (diff) | |
download | bcm5719-llvm-8d950ce18c6d8ab3b43a4950cecbb17a83914910.tar.gz bcm5719-llvm-8d950ce18c6d8ab3b43a4950cecbb17a83914910.zip |
fix typo; NFC
llvm-svn: 262961
Diffstat (limited to 'llvm')
-rw-r--r-- | llvm/include/llvm/CodeGen/BasicTTIImpl.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/llvm/include/llvm/CodeGen/BasicTTIImpl.h b/llvm/include/llvm/CodeGen/BasicTTIImpl.h index fce9a96e8ba..9520b842acb 100644 --- a/llvm/include/llvm/CodeGen/BasicTTIImpl.h +++ b/llvm/include/llvm/CodeGen/BasicTTIImpl.h @@ -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; } |