Skip to content

Commit 86497ad

Browse files
committed
fix typos
llvm-svn: 342241
1 parent b51a703 commit 86497ad

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

llvm/lib/CodeGen/SelectionDAG/LegalizeDAG.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3959,7 +3959,7 @@ bool SelectionDAGLegalize::ExpandNode(SDNode *Node) {
39593959
return false;
39603960
}
39613961

3962-
LLVM_DEBUG(dbgs() << "Succesfully expanded node\n");
3962+
LLVM_DEBUG(dbgs() << "Successfully expanded node\n");
39633963
ReplaceNode(Node, Results.data());
39643964
return true;
39653965
}

llvm/lib/Support/FoldingSet.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -275,7 +275,7 @@ void FoldingSetBase::GrowBucketCount(unsigned NewBucketCount) {
275275

276276
// Clear out new buckets.
277277
Buckets = AllocateBuckets(NewBucketCount);
278-
// Set NumBuckets only if allocation of new buckets was succesful
278+
// Set NumBuckets only if allocation of new buckets was successful.
279279
NumBuckets = NewBucketCount;
280280
NumNodes = 0;
281281

0 commit comments

Comments
 (0)