aboutsummaryrefslogtreecommitdiffstats
path: root/lib/CodeGen
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2007-04-06 17:47:14 +0000
committerChris Lattner <sabre@nondot.org>2007-04-06 17:47:14 +0000
commite303ac9052b9d03eff236469eb560e5b5da7fae2 (patch)
treedd6750530627999c852a698da849a21b68d0dd2b /lib/CodeGen
parent5a1ebb3c99eda9b2f18869e46d9b91eb2897ef07 (diff)
downloadexternal_llvm-e303ac9052b9d03eff236469eb560e5b5da7fae2.zip
external_llvm-e303ac9052b9d03eff236469eb560e5b5da7fae2.tar.gz
external_llvm-e303ac9052b9d03eff236469eb560e5b5da7fae2.tar.bz2
minor comment fix
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@35696 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/CodeGen')
-rw-r--r--lib/CodeGen/SelectionDAG/SelectionDAGISel.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/CodeGen/SelectionDAG/SelectionDAGISel.cpp b/lib/CodeGen/SelectionDAG/SelectionDAGISel.cpp
index f824950..1947414 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;