projects
/
platform
/
upstream
/
llvm.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
d2e887d
)
ELF Thunks: fix build error: missing 'overrides'
author
Roman Lebedev
<lebedev.ri@gmail.com>
Sun, 6 May 2018 19:50:04 +0000
(19:50 +0000)
committer
Roman Lebedev
<lebedev.ri@gmail.com>
Sun, 6 May 2018 19:50:04 +0000
(19:50 +0000)
llvm-svn: 331608
lld/ELF/Thunks.cpp
patch
|
blob
|
history
diff --git
a/lld/ELF/Thunks.cpp
b/lld/ELF/Thunks.cpp
index
8b72ab0
..
2cd7e51
100644
(file)
--- a/
lld/ELF/Thunks.cpp
+++ b/
lld/ELF/Thunks.cpp
@@
-204,7
+204,7
@@
public:
class PPC64PltCallStub final : public Thunk {
public:
PPC64PltCallStub(Symbol &Dest) : Thunk(Dest) {}
- uint32_t size() { return 20; }
+ uint32_t size()
override
{ return 20; }
void writeTo(uint8_t *Buf) override;
void addSymbols(ThunkSection &IS) override;
};