[llvm] r248549 - Fix typo
Matt Arsenault via llvm-commits
llvm-commits at lists.llvm.org
Thu Sep 24 15:36:49 PDT 2015
Author: arsenm
Date: Thu Sep 24 17:36:49 2015
New Revision: 248549
URL: http://llvm.org/viewvc/llvm-project?rev=248549&view=rev
Log:
Fix typo
Modified:
llvm/trunk/lib/CodeGen/LiveInterval.cpp
Modified: llvm/trunk/lib/CodeGen/LiveInterval.cpp
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/lib/CodeGen/LiveInterval.cpp?rev=248549&r1=248548&r2=248549&view=diff
==============================================================================
--- llvm/trunk/lib/CodeGen/LiveInterval.cpp (original)
+++ llvm/trunk/lib/CodeGen/LiveInterval.cpp Thu Sep 24 17:36:49 2015
@@ -865,7 +865,7 @@ void LiveInterval::constructMainRangeFro
// - If any of the subranges is live at a point the main liverange has to be
// live too, conversily if no subrange is live the main range mustn't be
// live either.
- // We do this by scannig through all the subranges simultaneously creating new
+ // We do this by scanning through all the subranges simultaneously creating new
// segments in the main range as segments start/ends come up in the subranges.
assert(hasSubRanges() && "expected subranges to be present");
assert(segments.empty() && valnos.empty() && "expected empty main range");
More information about the llvm-commits
mailing list