diff options
| author | Simon Pilgrim <llvm-dev@redking.me.uk> | 2018-01-30 12:18:51 +0000 |
|---|---|---|
| committer | Simon Pilgrim <llvm-dev@redking.me.uk> | 2018-01-30 12:18:51 +0000 |
| commit | eb07016156237790a9949338b6c0ecf33884605f (patch) | |
| tree | 1bc61802e2c0702530735a43bdb6dbddb00780be | |
| parent | 41d2152e8700a78e017860b69cc6c2687beff6ee (diff) | |
| download | bcm5719-llvm-eb07016156237790a9949338b6c0ecf33884605f.tar.gz bcm5719-llvm-eb07016156237790a9949338b6c0ecf33884605f.zip | |
Spelling mistake in comment. NFCI.
llvm-svn: 323752
| -rw-r--r-- | llvm/lib/Target/X86/X86TargetTransformInfo.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/Target/X86/X86TargetTransformInfo.cpp b/llvm/lib/Target/X86/X86TargetTransformInfo.cpp index e24c8dfcd54..8571be8cd2b 100644 --- a/llvm/lib/Target/X86/X86TargetTransformInfo.cpp +++ b/llvm/lib/Target/X86/X86TargetTransformInfo.cpp @@ -197,7 +197,7 @@ int X86TTIImpl::getArithmeticInstrCost( // v2i64/v4i64 mul is custom lowered as a series of long: // multiplies(3), shifts(3) and adds(2) // slm muldq version throughput is 2 and addq throughput 4 - // thus: 3X2 (muldq throughput) + 3X1 (shift throuput) + + // thus: 3X2 (muldq throughput) + 3X1 (shift throughput) + // 3X4 (addq throughput) = 17 { ISD::MUL, MVT::v2i64, 17 }, // slm addq\subq throughput is 4 |

