diff options
Diffstat (limited to 'llvm/lib/Object/COFFObjectFile.cpp')
-rw-r--r-- | llvm/lib/Object/COFFObjectFile.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/llvm/lib/Object/COFFObjectFile.cpp b/llvm/lib/Object/COFFObjectFile.cpp index a74ff39..d0ca50e 100644 --- a/llvm/lib/Object/COFFObjectFile.cpp +++ b/llvm/lib/Object/COFFObjectFile.cpp @@ -299,9 +299,9 @@ COFFObjectFile::getSectionContents(DataRefImpl Ref) const { return Res; } -Align COFFObjectFile::getSectionAlignment(DataRefImpl Ref) const { +uint64_t COFFObjectFile::getSectionAlignment(DataRefImpl Ref) const { const coff_section *Sec = toSec(Ref); - return Align(Sec->getAlignment()); + return Sec->getAlignment(); } bool COFFObjectFile::isSectionCompressed(DataRefImpl Sec) const { |