mirror of
https://github.com/RPCSX/llvm.git
synced 2024-11-26 13:10:34 +00:00
Fix typos in comments, and delete an unused function.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@137352 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
1f8d822023
commit
fa7eed1f8e
@ -1194,10 +1194,6 @@ namespace {
|
||||
if (RefCount != 0) --RefCount;
|
||||
}
|
||||
|
||||
void ClearRefCount() {
|
||||
RefCount = 0;
|
||||
}
|
||||
|
||||
bool IsKnownIncremented() const {
|
||||
return RefCount > 0;
|
||||
}
|
||||
@ -1364,7 +1360,7 @@ void BBState::MergePred(const BBState &Other) {
|
||||
/*TopDown=*/true);
|
||||
}
|
||||
|
||||
// For each entry in our set, if the other set doens't have an entry with the
|
||||
// For each entry in our set, if the other set doesn't have an entry with the
|
||||
// same key, force it to merge with an empty entry.
|
||||
for (ptr_iterator MI = top_down_ptr_begin(),
|
||||
ME = top_down_ptr_end(); MI != ME; ++MI)
|
||||
@ -1389,7 +1385,7 @@ void BBState::MergeSucc(const BBState &Other) {
|
||||
/*TopDown=*/false);
|
||||
}
|
||||
|
||||
// For each entry in our set, if the other set doens't have an entry
|
||||
// For each entry in our set, if the other set doesn't have an entry
|
||||
// with the same key, force it to merge with an empty entry.
|
||||
for (ptr_iterator MI = bottom_up_ptr_begin(),
|
||||
ME = bottom_up_ptr_end(); MI != ME; ++MI)
|
||||
|
Loading…
Reference in New Issue
Block a user