[PATCH] D65540: [llvm-objcopy][MachO] Fix method names. NFC.
Seiya Nuta via Phabricator via llvm-commits
llvm-commits at lists.llvm.org
Tue Aug 20 01:36:40 PDT 2019
This revision was automatically updated to reflect the committed changes.
Closed by commit rL369346: [llvm-objcopy][MachO] Fix method names. NFC. (authored by seiya, committed by ).
Changed prior to commit:
https://reviews.llvm.org/D65540?vs=215822&id=216070#toc
Repository:
rL LLVM
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D65540/new/
https://reviews.llvm.org/D65540
Files:
llvm/trunk/tools/llvm-objcopy/MachO/MachOWriter.cpp
Index: llvm/trunk/tools/llvm-objcopy/MachO/MachOWriter.cpp
===================================================================
--- llvm/trunk/tools/llvm-objcopy/MachO/MachOWriter.cpp
+++ llvm/trunk/tools/llvm-objcopy/MachO/MachOWriter.cpp
@@ -270,7 +270,7 @@
Out += sizeof(NListType);
}
-void MachOWriter::writeSymbolTable() {
+void MachOWriter::writeStringTable() {
if (!O.SymTabCommandIndex)
return;
const MachO::symtab_command &SymTabCommand =
@@ -281,7 +281,7 @@
LayoutBuilder.getStringTableBuilder().write(StrTable);
}
-void MachOWriter::writeStringTable() {
+void MachOWriter::writeSymbolTable() {
if (!O.SymTabCommandIndex)
return;
const MachO::symtab_command &SymTabCommand =
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D65540.216070.patch
Type: text/x-patch
Size: 718 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/llvm-commits/attachments/20190820/560141fd/attachment.bin>
More information about the llvm-commits
mailing list