From: Chris Lattner Date: Fri, 6 Apr 2007 17:47:14 +0000 (+0000) Subject: minor comment fix X-Git-Url: http://plrg.eecs.uci.edu/git/?a=commitdiff_plain;h=e303ac9052b9d03eff236469eb560e5b5da7fae2;p=oota-llvm.git minor comment fix git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@35696 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/CodeGen/SelectionDAG/SelectionDAGISel.cpp b/lib/CodeGen/SelectionDAG/SelectionDAGISel.cpp index f824950d464..1947414884c 100644 --- a/lib/CodeGen/SelectionDAG/SelectionDAGISel.cpp +++ b/lib/CodeGen/SelectionDAG/SelectionDAGISel.cpp @@ -2840,7 +2840,7 @@ GetRegistersForValue(const std::string &ConstrCode, // Okay, this register is good, we can use it. ++NumAllocated; - // If we allocated enough consecutive + // If we allocated enough consecutive registers, succeed. if (NumAllocated == NumRegs) { unsigned RegStart = (i-NumAllocated)+1; unsigned RegEnd = i+1;