From 761fd4c1d97977c16de9f0cf921056a37b906304 Mon Sep 17 00:00:00 2001 From: Nick Lewycky Date: Thu, 20 May 2010 03:30:09 +0000 Subject: [PATCH] Fix typo in comment. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@104209 91177308-0d34-0410-b5e6-96231b3b80d8 --- lib/CodeGen/LiveIntervalAnalysis.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/CodeGen/LiveIntervalAnalysis.cpp b/lib/CodeGen/LiveIntervalAnalysis.cpp index 2ad91584369..fd933cedd0e 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, %reg1031:6 = VLD1q16 %reg1024, ... + // Multiple defs of the same virtual register by the same instruction. + // e.g. %reg1031:5, %reg1031:6 = VLD1q16 %reg1024, ... // This is likely due to elimination of REG_SEQUENCE instructions. Return // here since there is nothing to do. return; -- 2.34.1