forked from OSchip/llvm-project
Remove extraneous semicolon.
This commit is contained in:
parent
6d52edebc9
commit
c5877ec9b4
|
@ -641,7 +641,7 @@ void GIMatchTreeVRegDefPartitioner::addToPartition(bool Result,
|
||||||
P = Partitions.insert(std::make_pair(I->second, BitVector())).first;
|
P = Partitions.insert(std::make_pair(I->second, BitVector())).first;
|
||||||
P->second.resize(LeafIdx + 1);
|
P->second.resize(LeafIdx + 1);
|
||||||
P->second.set(LeafIdx);
|
P->second.set(LeafIdx);
|
||||||
};
|
}
|
||||||
|
|
||||||
void GIMatchTreeVRegDefPartitioner::repartition(
|
void GIMatchTreeVRegDefPartitioner::repartition(
|
||||||
GIMatchTreeBuilder::LeafVec &Leaves) {
|
GIMatchTreeBuilder::LeafVec &Leaves) {
|
||||||
|
|
Loading…
Reference in New Issue