diff options
author | Chris Lattner <sabre@nondot.org> | 2005-10-26 18:41:41 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2005-10-26 18:41:41 +0000 |
commit | c60e6020c0dd1260b0d60835e2ab823f97a4b810 (patch) | |
tree | 47cfa54644f6f2142b6d886e354e8fd1455b2a4b /lib/CodeGen/LiveIntervalAnalysis.cpp | |
parent | 2cbc207c76f10716b61c466f56b5b9fccbb80f4e (diff) |
Fix some spello's pointed out by Gabor Greif
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@24019 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/CodeGen/LiveIntervalAnalysis.cpp')
-rw-r--r-- | lib/CodeGen/LiveIntervalAnalysis.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/CodeGen/LiveIntervalAnalysis.cpp b/lib/CodeGen/LiveIntervalAnalysis.cpp index 05bae15467..974ac1c547 100644 --- a/lib/CodeGen/LiveIntervalAnalysis.cpp +++ b/lib/CodeGen/LiveIntervalAnalysis.cpp @@ -637,7 +637,7 @@ void LiveIntervals::computeIntervals() /// number. If all of the places that IntA and IntB overlap are defined by /// copies from IntA to IntB, we know that these two ranges can really be /// merged if we adjust the value numbers. If it is safe, adjust the value -/// numbers and return true, allowing coallescing to occur. +/// numbers and return true, allowing coalescing to occur. bool LiveIntervals:: AdjustIfAllOverlappingRangesAreCopiesFrom(LiveInterval &IntA, LiveInterval &IntB, @@ -729,7 +729,7 @@ void LiveIntervals::joinIntervalsInMachineBB(MachineBasicBlock *MBB) { // If DestInt is actually a copy from SrcInt (which we know) that is used // to define another value of SrcInt, we can change the other range of // SrcInt to be the value of the range that defines DestInt, allowing a - // coallesce. + // coalesce. if (!Joinable && DestInt.containsOneValue() && AdjustIfAllOverlappingRangesAreCopiesFrom(SrcInt, DestInt, MIDefIdx)) Joinable = true; |