diff options
author | Cong Hou <congh@google.com> | 2015-12-05 01:00:22 +0000 |
---|---|---|
committer | Cong Hou <congh@google.com> | 2015-12-05 01:00:22 +0000 |
commit | a465312e9c4b32d24dd7bc1303dc563fc4f81aec (patch) | |
tree | 3b7e38dea495ca0de76e1f4b087d033e3353de1c /llvm/lib | |
parent | 4da4abd87fecefe0d4b726ed0938a4a816dcec17 (diff) | |
download | bcm5719-llvm-a465312e9c4b32d24dd7bc1303dc563fc4f81aec.tar.gz bcm5719-llvm-a465312e9c4b32d24dd7bc1303dc563fc4f81aec.zip |
Fix a typo in LoopVectorize.cpp. NFC.
llvm-svn: 254813
Diffstat (limited to 'llvm/lib')
-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 c5b8b5b073d..917f2d55f6c 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 intevals. + // Count the number of live intervals. unsigned RegUsage = 0; for (auto Inst : OpenIntervals) RegUsage += GetRegUsage(Inst->getType(), VFs[j]); |