mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-06-13 22:24:07 +00:00
Remove isPod() from DenseMapInfo, splitting it out to its own
isPodLike type trait. This is a generally useful type trait for more than just DenseMap, and we really care about whether something acts like a pod, not whether it really is a pod. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@91421 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
@ -413,7 +413,7 @@ uintptr_t Deserializer::ReadInternalRefPtr() {
|
||||
return GetFinalPtr(E);
|
||||
}
|
||||
|
||||
void Deserializer::BPEntry::SetPtr(BPNode*& FreeList, void* P) {
|
||||
void BPEntry::SetPtr(BPNode*& FreeList, void* P) {
|
||||
BPNode* Last = NULL;
|
||||
|
||||
for (BPNode* N = Head; N != NULL; N=N->Next) {
|
||||
|
Reference in New Issue
Block a user