From 2f5992c6dbdf9bbe91594ecf20cabacb13fd6dd2 Mon Sep 17 00:00:00 2001 From: Matthias Braun Date: Fri, 4 Oct 2013 16:53:02 +0000 Subject: [PATCH] Fix comment llvm-svn: 191966 --- lib/CodeGen/RegisterCoalescer.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/CodeGen/RegisterCoalescer.cpp b/lib/CodeGen/RegisterCoalescer.cpp index 791f1baf63d..4c992617d4e 100644 --- a/lib/CodeGen/RegisterCoalescer.cpp +++ b/lib/CodeGen/RegisterCoalescer.cpp @@ -434,7 +434,7 @@ bool RegisterCoalescer::adjustCopiesBackFrom(const CoalescerPair &CP, LIS->getInterval(CP.isFlipped() ? CP.getSrcReg() : CP.getDstReg()); SlotIndex CopyIdx = LIS->getInstructionIndex(CopyMI).getRegSlot(); - // BValNo is a value number in B that is defined by a copy from A. 'B3' in + // BValNo is a value number in B that is defined by a copy from A. 'B1' in // the example above. LiveInterval::iterator BLR = IntB.FindLiveRangeContaining(CopyIdx); if (BLR == IntB.end()) return false;