diff options
| author | Rui Ueyama <ruiu@google.com> | 2016-07-09 23:02:37 +0000 |
|---|---|---|
| committer | Rui Ueyama <ruiu@google.com> | 2016-07-09 23:02:37 +0000 |
| commit | 0d410c265c0984459445f290bdad4c8a4555011a (patch) | |
| tree | 454e40549db178081d35feed01c20d81c8ed5f60 | |
| parent | db90d4d9c1b8fb7400fd328c81dcd147064cb6e2 (diff) | |
| download | bcm5719-llvm-0d410c265c0984459445f290bdad4c8a4555011a.tar.gz bcm5719-llvm-0d410c265c0984459445f290bdad4c8a4555011a.zip | |
Attempt to fix buildbots.
llvm-svn: 275001
| -rw-r--r-- | lld/ELF/Thunks.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lld/ELF/Thunks.h b/lld/ELF/Thunks.h index 949e2f5acc4..b937d791849 100644 --- a/lld/ELF/Thunks.h +++ b/lld/ELF/Thunks.h @@ -34,8 +34,8 @@ public: Thunk(const SymbolBody &Destination, const InputSection<ELFT> &Owner); virtual ~Thunk(); - virtual uint32_t size() const = 0; - virtual void writeTo(uint8_t *Buf) const = 0; + virtual uint32_t size() const { return 0; } + virtual void writeTo(uint8_t *Buf) const {} uintX_t getVA() const; protected: |

