diff options
author | Cong Hou <congh@google.com> | 2015-12-02 21:33:47 +0000 |
---|---|---|
committer | Cong Hou <congh@google.com> | 2015-12-02 21:33:47 +0000 |
commit | 1a6b5a9e4f78145e0a8534a533a4d435409479b5 (patch) | |
tree | 312c5dabf01b7cf4b1d57a9374beec9a5edd8fd5 /llvm/lib/Transforms/Vectorize/LoopVectorize.cpp | |
parent | 39b7d65d8239fc48db900250f34a9aa8adb48638 (diff) | |
download | bcm5719-llvm-1a6b5a9e4f78145e0a8534a533a4d435409479b5.tar.gz bcm5719-llvm-1a6b5a9e4f78145e0a8534a533a4d435409479b5.zip |
Fix a typo in LoopVectorize.cpp. NFC.
llvm-svn: 254549
Diffstat (limited to 'llvm/lib/Transforms/Vectorize/LoopVectorize.cpp')
-rw-r--r-- | llvm/lib/Transforms/Vectorize/LoopVectorize.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/Transforms/Vectorize/LoopVectorize.cpp b/llvm/lib/Transforms/Vectorize/LoopVectorize.cpp index c956a55a100..c5b8b5b073d 100644 --- a/llvm/lib/Transforms/Vectorize/LoopVectorize.cpp +++ b/llvm/lib/Transforms/Vectorize/LoopVectorize.cpp @@ -5188,7 +5188,7 @@ LoopVectorizationCostModel::calculateRegisterUsage( continue; } - // Count the number of live interals. + // Count the number of live intevals. unsigned RegUsage = 0; for (auto Inst : OpenIntervals) RegUsage += GetRegUsage(Inst->getType(), VFs[j]); |