1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-11-22 18:54:02 +01:00

fix typos

llvm-svn: 342241
This commit is contained in:
Adrian Prantl 2018-09-14 16:12:14 +00:00
parent 7ad27d20dd
commit 8d749190f8
2 changed files with 2 additions and 2 deletions

View File

@ -3959,7 +3959,7 @@ bool SelectionDAGLegalize::ExpandNode(SDNode *Node) {
return false;
}
LLVM_DEBUG(dbgs() << "Succesfully expanded node\n");
LLVM_DEBUG(dbgs() << "Successfully expanded node\n");
ReplaceNode(Node, Results.data());
return true;
}

View File

@ -275,7 +275,7 @@ void FoldingSetBase::GrowBucketCount(unsigned NewBucketCount) {
// Clear out new buckets.
Buckets = AllocateBuckets(NewBucketCount);
// Set NumBuckets only if allocation of new buckets was succesful
// Set NumBuckets only if allocation of new buckets was successful.
NumBuckets = NewBucketCount;
NumNodes = 0;