mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-07-28 03:25:23 +00:00
Fix typename issues.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@241768 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
@@ -724,11 +724,11 @@ ELFFile<ELFT>::ELFFile(StringRef Object, std::error_code &EC)
|
|||||||
template <class ELFT>
|
template <class ELFT>
|
||||||
void ELFFile<ELFT>::scanDynamicTable() {
|
void ELFFile<ELFT>::scanDynamicTable() {
|
||||||
// Build load-address to file-offset map.
|
// Build load-address to file-offset map.
|
||||||
typedef typename IntervalMap<
|
typedef IntervalMap<
|
||||||
uintX_t, uintptr_t,
|
uintX_t, uintptr_t,
|
||||||
IntervalMapImpl::NodeSizer<uintX_t, uintptr_t>::LeafSize,
|
IntervalMapImpl::NodeSizer<uintX_t, uintptr_t>::LeafSize,
|
||||||
IntervalMapHalfOpenInfo<uintX_t>> LoadMapT;
|
IntervalMapHalfOpenInfo<uintX_t>> LoadMapT;
|
||||||
LoadMapT::Allocator Alloc;
|
typename LoadMapT::Allocator Alloc;
|
||||||
LoadMapT LoadMap(Alloc);
|
LoadMapT LoadMap(Alloc);
|
||||||
|
|
||||||
for (Elf_Phdr_Iter PhdrI = program_header_begin(),
|
for (Elf_Phdr_Iter PhdrI = program_header_begin(),
|
||||||
|
Reference in New Issue
Block a user