From: Cong Hou Date: Sat, 5 Dec 2015 01:00:22 +0000 (+0000) Subject: Fix a typo in LoopVectorize.cpp. NFC. X-Git-Url: http://plrg.eecs.uci.edu/git/?p=oota-llvm.git;a=commitdiff_plain;h=c5cf58b8a73357b0c4309f1e8dd10ba0f72accd2;hp=ca526959c1fc8d8172b780d916cdeb3f03a33836 Fix a typo in LoopVectorize.cpp. NFC. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@254813 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/Transforms/Vectorize/LoopVectorize.cpp b/lib/Transforms/Vectorize/LoopVectorize.cpp index c5b8b5b073d..917f2d55f6c 100644 --- a/lib/Transforms/Vectorize/LoopVectorize.cpp +++ b/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]);