[lld] r289796 - [ELF] - Attempt to fix ubuntu 64x buildbot (2).
George Rimar via llvm-commits
llvm-commits at lists.llvm.org
Thu Dec 15 01:59:18 PST 2016
Author: grimar
Date: Thu Dec 15 03:59:18 2016
New Revision: 289796
URL: http://llvm.org/viewvc/llvm-project?rev=289796&view=rev
Log:
[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).
Modified:
lld/trunk/ELF/GdbIndex.h
Modified: lld/trunk/ELF/GdbIndex.h
URL: http://llvm.org/viewvc/llvm-project/lld/trunk/ELF/GdbIndex.h?rev=289796&r1=289795&r2=289796&view=diff
==============================================================================
--- lld/trunk/ELF/GdbIndex.h (original)
+++ lld/trunk/ELF/GdbIndex.h Thu Dec 15 03:59:18 2016
@@ -24,7 +24,7 @@ template <class ELFT> struct AddressEntr
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
More information about the llvm-commits
mailing list