[PATCH] D43247: Use reinterpret_cast<> instead of C-style cast. NFC.
Rui Ueyama via Phabricator via llvm-commits
llvm-commits at lists.llvm.org
Tue Feb 13 10:00:21 PST 2018
ruiu created this revision.
ruiu added reviewers: sbc100, ncw.
Herald added subscribers: arichardson, emaste.
It is currently interpreted as reinterpret_cast<>. Make it explicit.
https://reviews.llvm.org/D43247
Files:
lld/COFF/SymbolTable.cpp
lld/ELF/SymbolTable.cpp
Index: lld/ELF/SymbolTable.cpp
===================================================================
--- lld/ELF/SymbolTable.cpp
+++ lld/ELF/SymbolTable.cpp
@@ -186,7 +186,7 @@
// First, make a copy of __real_sym.
Symbol *Real = nullptr;
if (W.Real->isDefined()) {
- Real = (Symbol *)make<SymbolUnion>();
+ Real = reinterpret_cast<Symbol *>(make<SymbolUnion>());
memcpy(Real, W.Real, sizeof(SymbolUnion));
}
@@ -234,7 +234,7 @@
Symbol *Sym;
if (IsNew) {
- Sym = (Symbol *)make<SymbolUnion>();
+ Sym = reinterpret_cast<Symbol *>(make<SymbolUnion>());
Sym->InVersionScript = false;
Sym->Visibility = STV_DEFAULT;
Sym->IsUsedInRegularObj = false;
Index: lld/COFF/SymbolTable.cpp
===================================================================
--- lld/COFF/SymbolTable.cpp
+++ lld/COFF/SymbolTable.cpp
@@ -145,7 +145,7 @@
Symbol *&Sym = SymMap[CachedHashStringRef(Name)];
if (Sym)
return {Sym, false};
- Sym = (Symbol *)make<SymbolUnion>();
+ Sym = reinterpret_cast<Symbol *>(make<SymbolUnion>());
Sym->IsUsedInRegularObj = false;
Sym->PendingArchiveLoad = false;
return {Sym, true};
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D43247.134067.patch
Type: text/x-patch
Size: 1172 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/llvm-commits/attachments/20180213/74643e1d/attachment.bin>
More information about the llvm-commits
mailing list