forked from OSchip/llvm-project
[ELF] - Attempt to fix ubuntu 64x buildbot (2).
Fixed inaccurate member type: uint32_t -> size_t (http://lab.llvm.org:8011/builders/llvm-clang-lld-x86_64-scei-ps4-ubuntu-fast/builds/2984/steps/build/logs/stdio). llvm-svn: 289796
This commit is contained in:
parent
08c2e86802
commit
232d11cb54
|
@ -24,7 +24,7 @@ template <class ELFT> struct AddressEntry {
|
|||
InputSectionBase<ELFT> *Section;
|
||||
uint64_t LowAddress;
|
||||
uint64_t HighAddress;
|
||||
uint32_t CuIndex;
|
||||
size_t CuIndex;
|
||||
};
|
||||
|
||||
// GdbIndexBuilder is a helper class used for extracting data required
|
||||
|
|
Loading…
Reference in New Issue