summaryrefslogtreecommitdiff
path: root/utils
diff options
context:
space:
mode:
authorAndrew Trick <atrick@apple.com>2012-04-10 23:53:32 +0000
committerAndrew Trick <atrick@apple.com>2012-04-10 23:53:32 +0000
commit4b745588c935a99cd3fcc574bc6e4934c2e85397 (patch)
tree96ce1bb76910f5e2082e9c2d8bcc806dd54400a7 /utils
parent06886aaaebe38b7e4b253b336624c9a7ab6dbc44 (diff)
downloadllvm-4b745588c935a99cd3fcc574bc6e4934c2e85397.tar.gz
llvm-4b745588c935a99cd3fcc574bc6e4934c2e85397.tar.bz2
llvm-4b745588c935a99cd3fcc574bc6e4934c2e85397.tar.xz
TableGen/reginfo potential bug: typo from previous checkin.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@154452 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'utils')
-rw-r--r--utils/TableGen/CodeGenRegisters.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/utils/TableGen/CodeGenRegisters.cpp b/utils/TableGen/CodeGenRegisters.cpp
index f071749ec6..920d56f0b4 100644
--- a/utils/TableGen/CodeGenRegisters.cpp
+++ b/utils/TableGen/CodeGenRegisters.cpp
@@ -1222,7 +1222,7 @@ void CodeGenRegBank::computeRegUnitSets() {
assert(Idx < (2*NumRegUnitSubSets) && "runaway unit set inference");
// Compare new sets with all original classes.
- for (unsigned SearchIdx = (SearchIdx >= NumRegUnitSubSets) ? 0 : Idx+1;
+ for (unsigned SearchIdx = (Idx >= NumRegUnitSubSets) ? 0 : Idx+1;
SearchIdx != EndIdx; ++SearchIdx) {
std::set<unsigned> Intersection;
std::set_intersection(RegUnitSets[Idx].Units.begin(),