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 | c53cc4f8bff66f88b4c612135ea878eb070aa08e (patch) | |
tree | d4e6d13f8e594878a68b6cb93481a33233de156c /llvm/lib | |
parent | 76a434840a2d6088f9e6b897e6ff515db9b36b04 (diff) | |
download | bcm5719-llvm-c53cc4f8bff66f88b4c612135ea878eb070aa08e.tar.gz bcm5719-llvm-c53cc4f8bff66f88b4c612135ea878eb070aa08e.zip |
Fix typo in comment.
llvm-svn: 104209
Diffstat (limited to 'llvm/lib')
-rw-r--r-- | llvm/lib/CodeGen/LiveIntervalAnalysis.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/llvm/lib/CodeGen/LiveIntervalAnalysis.cpp b/llvm/lib/CodeGen/LiveIntervalAnalysis.cpp index 2ad91584369..fd933cedd0e 100644 --- a/llvm/lib/CodeGen/LiveIntervalAnalysis.cpp +++ b/llvm/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; |