diff options
| -rw-r--r-- | lld/ELF/Writer.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lld/ELF/Writer.cpp b/lld/ELF/Writer.cpp index 36d2fc874ac..4d1e8b0ff68 100644 --- a/lld/ELF/Writer.cpp +++ b/lld/ELF/Writer.cpp @@ -91,7 +91,7 @@ private: return !Symtab.getSharedFiles().empty() || Config->Shared; } bool needsDynamicSections() const { return isOutputDynamic(); } - unsigned getVAStart() const { return Config->Shared ? 0 : Target->getVAStart(); } + uintX_t getVAStart() const { return Config->Shared ? 0 : Target->getVAStart(); } std::unique_ptr<llvm::FileOutputBuffer> Buffer; |

