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/MC/MachObjectWriter.cpp | |
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/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 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); |