diff options
Diffstat (limited to 'llvm/lib/Object/WasmObjectFile.cpp')
-rw-r--r-- | llvm/lib/Object/WasmObjectFile.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/llvm/lib/Object/WasmObjectFile.cpp b/llvm/lib/Object/WasmObjectFile.cpp index 6657102..0e24ac9 100644 --- a/llvm/lib/Object/WasmObjectFile.cpp +++ b/llvm/lib/Object/WasmObjectFile.cpp @@ -1735,8 +1735,8 @@ WasmObjectFile::getSectionContents(DataRefImpl Sec) const { return S.Content; } -Align WasmObjectFile::getSectionAlignment(DataRefImpl Sec) const { - return Align(1); +uint64_t WasmObjectFile::getSectionAlignment(DataRefImpl Sec) const { + return 1; } bool WasmObjectFile::isSectionCompressed(DataRefImpl Sec) const { |