diff options
author | Nick Lewycky <nicholas@mxc.ca> | 2010-05-20 03:30:09 +0000 |
---|---|---|
committer | Nick Lewycky <nicholas@mxc.ca> | 2010-05-20 03:30:09 +0000 |
commit | 761fd4c1d97977c16de9f0cf921056a37b906304 (patch) | |
tree | e61e63dec4fed1e0d9c39c5e234bdeec92d68b5c /lib/CodeGen/LiveIntervalAnalysis.cpp | |
parent | 14aaeac5cf8dd96859c4e74423f17a3da1c094c4 (diff) |
Fix typo in comment.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@104209 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 2ad9158436..fd933cedd0 100644 --- a/lib/CodeGen/LiveIntervalAnalysis.cpp +++ b/lib/CodeGen/LiveIntervalAnalysis.cpp @@ -407,8 +407,8 @@ void LiveIntervals::handleVirtualRegisterDef(MachineBasicBlock *mbb, } else { if (MultipleDefsBySameMI(*mi, MOIdx)) - // Mutple defs of the same virtual register by the same instruction. e.g. - // %reg1031:5<def>, %reg1031:6<def> = VLD1q16 %reg1024<kill>, ... + // Multiple defs of the same virtual register by the same instruction. + // e.g. %reg1031:5<def>, %reg1031:6<def> = VLD1q16 %reg1024<kill>, ... // This is likely due to elimination of REG_SEQUENCE instructions. Return // here since there is nothing to do. return; |