[PATCH] D65540: [llvm-objcopy][MachO] Fix method names. NFC.

Seiya Nuta via Phabricator via llvm-commits llvm-commits at lists.llvm.org
Sun Aug 18 22:35:12 PDT 2019


seiya updated this revision to Diff 215821.
seiya added a comment.

Rebase for the sake of `arc patch`.


Repository:
  rG LLVM Github Monorepo

CHANGES SINCE LAST ACTION
  https://reviews.llvm.org/D65540/new/

https://reviews.llvm.org/D65540

Files:
  llvm/tools/llvm-objcopy/MachO/MachOWriter.cpp


Index: llvm/tools/llvm-objcopy/MachO/MachOWriter.cpp
===================================================================
--- llvm/tools/llvm-objcopy/MachO/MachOWriter.cpp
+++ llvm/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.215821.patch
Type: text/x-patch
Size: 700 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/llvm-commits/attachments/20190819/bebe07b0/attachment-0001.bin>


More information about the llvm-commits mailing list