[llvm-commits] [llvm] r104209 - /llvm/trunk/lib/CodeGen/LiveIntervalAnalysis.cpp
Nick Lewycky
nicholas at mxc.ca
Wed May 19 20:30:09 PDT 2010
Author: nicholas
Date: Wed May 19 22:30:09 2010
New Revision: 104209
URL: http://llvm.org/viewvc/llvm-project?rev=104209&view=rev
Log:
Fix typo in comment.
Modified:
llvm/trunk/lib/CodeGen/LiveIntervalAnalysis.cpp
Modified: llvm/trunk/lib/CodeGen/LiveIntervalAnalysis.cpp
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/lib/CodeGen/LiveIntervalAnalysis.cpp?rev=104209&r1=104208&r2=104209&view=diff
==============================================================================
--- llvm/trunk/lib/CodeGen/LiveIntervalAnalysis.cpp (original)
+++ llvm/trunk/lib/CodeGen/LiveIntervalAnalysis.cpp Wed May 19 22:30:09 2010
@@ -407,8 +407,8 @@
} 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;
More information about the llvm-commits
mailing list