diff options
author | Daniel Dunbar <daniel@zuster.org> | 2010-12-17 02:45:59 +0000 |
---|---|---|
committer | Daniel Dunbar <daniel@zuster.org> | 2010-12-17 02:45:59 +0000 |
commit | 5d2477cecf53bef911f57423a5cecb743d4286fa (patch) | |
tree | 8262c25e63814c02fe8c40041e68e9aaf49ce500 /lib/MC/MachObjectWriter.cpp | |
parent | feb7ba3d9abfa1eb89f6da93c51649baaa931ab8 (diff) |
MC/Assembler: Strip out object writer arguments, now that it is always available
-- and remove FIXME asking for the same!
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@122032 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/MC/MachObjectWriter.cpp')
-rw-r--r-- | lib/MC/MachObjectWriter.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/MC/MachObjectWriter.cpp b/lib/MC/MachObjectWriter.cpp index 619954ca3b..d050ef0bd4 100644 --- a/lib/MC/MachObjectWriter.cpp +++ b/lib/MC/MachObjectWriter.cpp @@ -1257,7 +1257,7 @@ public: // Write the actual section data. for (MCAssembler::const_iterator it = Asm.begin(), ie = Asm.end(); it != ie; ++it) { - Asm.WriteSectionData(it, Layout, this); + Asm.WriteSectionData(it, Layout); uint64_t Pad = getPaddingSize(it, Layout); for (unsigned int i = 0; i < Pad; ++i) |