diff options
author | Jim Grosbach <grosbach@apple.com> | 2011-12-06 00:03:48 +0000 |
---|---|---|
committer | Jim Grosbach <grosbach@apple.com> | 2011-12-06 00:03:48 +0000 |
commit | 18e2fe47fa9a9a470c55837ed097bc07948b65aa (patch) | |
tree | 6c6fdc817c0ef96ee355d50d8f0d5f5b6843154b /llvm/lib/MC/MachObjectWriter.cpp | |
parent | 56f326e7f20651e97152a543180b50dc9f75d5d0 (diff) | |
download | bcm5719-llvm-18e2fe47fa9a9a470c55837ed097bc07948b65aa.tar.gz bcm5719-llvm-18e2fe47fa9a9a470c55837ed097bc07948b65aa.zip |
Switch MCAssembler to method names starting w/ lower-case.
per http://llvm.org/docs/CodingStandards.html#ll_naming
llvm-svn: 145873
Diffstat (limited to 'llvm/lib/MC/MachObjectWriter.cpp')
-rw-r--r-- | llvm/lib/MC/MachObjectWriter.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/MC/MachObjectWriter.cpp b/llvm/lib/MC/MachObjectWriter.cpp index a9219ad29c6..b518b3e21e0 100644 --- a/llvm/lib/MC/MachObjectWriter.cpp +++ b/llvm/lib/MC/MachObjectWriter.cpp @@ -731,7 +731,7 @@ void MachObjectWriter::WriteObject(MCAssembler &Asm, // Write the actual section data. for (MCAssembler::const_iterator it = Asm.begin(), ie = Asm.end(); it != ie; ++it) { - Asm.WriteSectionData(it, Layout); + Asm.writeSectionData(it, Layout); uint64_t Pad = getPaddingSize(it, Layout); for (unsigned int i = 0; i < Pad; ++i) |