[lld] r298971 - Attempt to fix buildbot.
Rui Ueyama via llvm-commits
llvm-commits at lists.llvm.org
Tue Mar 28 18:36:37 PDT 2017
Author: ruiu
Date: Tue Mar 28 20:36:37 2017
New Revision: 298971
URL: http://llvm.org/viewvc/llvm-project?rev=298971&view=rev
Log:
Attempt to fix buildbot.
Modified:
lld/trunk/ELF/SyntheticSections.h
Modified: lld/trunk/ELF/SyntheticSections.h
URL: http://llvm.org/viewvc/llvm-project/lld/trunk/ELF/SyntheticSections.h?rev=298971&r1=298970&r2=298971&view=diff
==============================================================================
--- lld/trunk/ELF/SyntheticSections.h (original)
+++ lld/trunk/ELF/SyntheticSections.h Tue Mar 28 20:36:37 2017
@@ -162,7 +162,7 @@ public:
BssSection(StringRef Name);
void writeTo(uint8_t *) override {}
bool empty() const override { return getSize() == 0; }
- size_t reserveSpace(size_t Size, uint32_t Alignment);
+ size_t reserveSpace(uint64_t Size, uint32_t Alignment);
size_t getSize() const override { return Size; }
private:
More information about the llvm-commits
mailing list