diff options
author | Jim Grosbach <grosbach@apple.com> | 2015-06-01 23:55:06 +0000 |
---|---|---|
committer | Jim Grosbach <grosbach@apple.com> | 2015-06-01 23:55:06 +0000 |
commit | 249af2a033ef527a60460bf4b578cb35d27f570a (patch) | |
tree | 7ba0400b208b30ce8cc6809f92cc5d2e9c02b3ff /llvm/lib | |
parent | 5bf65e0c1896e62cf3637f0332a0bf0fa18b8606 (diff) | |
download | bcm5719-llvm-249af2a033ef527a60460bf4b578cb35d27f570a.tar.gz bcm5719-llvm-249af2a033ef527a60460bf4b578cb35d27f570a.zip |
MC: Tidy up LOH naming a bit. NFC.
llvm-svn: 238800
Diffstat (limited to 'llvm/lib')
-rw-r--r-- | llvm/lib/MC/MCLinkerOptimizationHint.cpp | 2 | ||||
-rw-r--r-- | llvm/lib/MC/MachObjectWriter.cpp | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/llvm/lib/MC/MCLinkerOptimizationHint.cpp b/llvm/lib/MC/MCLinkerOptimizationHint.cpp index 2c9c67cf66a..5f6a57980ad 100644 --- a/llvm/lib/MC/MCLinkerOptimizationHint.cpp +++ b/llvm/lib/MC/MCLinkerOptimizationHint.cpp @@ -22,7 +22,7 @@ using namespace llvm; // - Its argN. // <arg1> to <argN> are absolute addresses in the object file, i.e., // relative addresses from the beginning of the object file. -void MCLOHDirective::Emit_impl(raw_ostream &OutStream, +void MCLOHDirective::emit_impl(raw_ostream &OutStream, const MachObjectWriter &ObjWriter, const MCAsmLayout &Layout) const { encodeULEB128(Kind, OutStream); diff --git a/llvm/lib/MC/MachObjectWriter.cpp b/llvm/lib/MC/MachObjectWriter.cpp index 1ee3244684a..3d06d0ff32f 100644 --- a/llvm/lib/MC/MachObjectWriter.cpp +++ b/llvm/lib/MC/MachObjectWriter.cpp @@ -939,7 +939,7 @@ void MachObjectWriter::WriteObject(MCAssembler &Asm, #ifndef NDEBUG unsigned Start = OS.tell(); #endif - Asm.getLOHContainer().Emit(*this, Layout); + Asm.getLOHContainer().emit(*this, Layout); // Pad to a multiple of the pointer size. WriteBytes("", OffsetToAlignment(LOHRawSize, is64Bit() ? 8 : 4)); assert(OS.tell() - Start == LOHSize); |