diff options
author | Simon Pilgrim <llvm-dev@redking.me.uk> | 2019-08-20 17:54:37 +0000 |
---|---|---|
committer | Simon Pilgrim <llvm-dev@redking.me.uk> | 2019-08-20 17:54:37 +0000 |
commit | 3b9a27b6908040881dad394022f8c472c15c0784 (patch) | |
tree | cfb5555ad16d47b4b2fac1ee0d289b37dfb248d0 | |
parent | c4299553f05ede6d6eab0081707f7e71ebea8c4e (diff) | |
download | bcm5719-llvm-3b9a27b6908040881dad394022f8c472c15c0784.tar.gz bcm5719-llvm-3b9a27b6908040881dad394022f8c472c15c0784.zip |
Fix typo in comment. NFCI.
llvm-svn: 369419
-rw-r--r-- | llvm/include/llvm/CodeGen/BasicTTIImpl.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/include/llvm/CodeGen/BasicTTIImpl.h b/llvm/include/llvm/CodeGen/BasicTTIImpl.h index 88b034d34ef..6af8bdcce2d 100644 --- a/llvm/include/llvm/CodeGen/BasicTTIImpl.h +++ b/llvm/include/llvm/CodeGen/BasicTTIImpl.h @@ -327,7 +327,7 @@ public: unsigned getEstimatedNumberOfCaseClusters(const SwitchInst &SI, unsigned &JumpTableSize) { /// Try to find the estimated number of clusters. Note that the number of - /// clusters identified in this function could be different from the actural + /// clusters identified in this function could be different from the actual /// numbers found in lowering. This function ignore switches that are /// lowered with a mix of jump table / bit test / BTree. This function was /// initially intended to be used when estimating the cost of switch in |