mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-12-14 11:32:34 +00:00
Add a helper useful when mapping from a map element to its hash node.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@42480 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
ab528fe0fb
commit
1bcc79666d
@ -166,7 +166,18 @@ public:
|
||||
MallocAllocator A;
|
||||
return Create(KeyStart, KeyEnd, A);
|
||||
}
|
||||
|
||||
|
||||
|
||||
/// GetStringMapEntryFromValue - Given a value that is known to be embedded
|
||||
/// into a StringMapEntry, return the StringMapEntry itself.
|
||||
static StringMapEntry &GetStringMapEntryFromValue(ValueTy &V) {
|
||||
return *reinterpret_cast<StringMapEntry*>(reinterpret_cast<char*>(&V) -
|
||||
sizeof(StringMapEntryBase));
|
||||
}
|
||||
static const StringMapEntry &GetStringMapEntryFromValue(const ValueTy &V) {
|
||||
return GetStringMapEntryFromValue(const_cast<ValueTy&>(V));
|
||||
}
|
||||
|
||||
/// Destroy - Destroy this StringMapEntry, releasing memory back to the
|
||||
/// specified allocator.
|
||||
template<typename AllocatorTy>
|
||||
|
Loading…
Reference in New Issue
Block a user