summaryrefslogtreecommitdiff
path: root/lib/CodeGen/MachOWriter.cpp
diff options
context:
space:
mode:
authorNate Begeman <natebegeman@mac.com>2010-01-17 03:49:01 +0000
committerNate Begeman <natebegeman@mac.com>2010-01-17 03:49:01 +0000
commit6f24a0a603d7edba4995153092ff841703df6824 (patch)
tree9bcbbb026c8dbe7889c8576b13dd5736351e1df9 /lib/CodeGen/MachOWriter.cpp
parent4eb66b8d0e41f4fa643d765efc5a9d2124f0c387 (diff)
downloadllvm-6f24a0a603d7edba4995153092ff841703df6824.tar.gz
llvm-6f24a0a603d7edba4995153092ff841703df6824.tar.bz2
llvm-6f24a0a603d7edba4995153092ff841703df6824.tar.xz
Add a note for the macho streamer and remove a used of the mangler from the soon to be defunct machowriter pass.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@93670 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/CodeGen/MachOWriter.cpp')
-rw-r--r--lib/CodeGen/MachOWriter.cpp6
1 files changed, 0 insertions, 6 deletions
diff --git a/lib/CodeGen/MachOWriter.cpp b/lib/CodeGen/MachOWriter.cpp
index bd9c9ff29e..e8bbe217b8 100644
--- a/lib/CodeGen/MachOWriter.cpp
+++ b/lib/CodeGen/MachOWriter.cpp
@@ -69,9 +69,6 @@ MachOWriter::~MachOWriter() {
}
bool MachOWriter::doInitialization(Module &M) {
- Mang = new Mangler(M, MAI->getGlobalPrefix(), MAI->getPrivateGlobalPrefix(),
- MAI->getLinkerPrivateGlobalPrefix());
-
// Initialize TargetLoweringObjectFile.
TM.getTargetLowering()->getObjFileLowering().Initialize(OutContext, TM);
@@ -81,9 +78,6 @@ bool MachOWriter::doInitialization(Module &M) {
/// doFinalization - Now that the module has been completely processed, emit
/// the Mach-O file to 'O'.
bool MachOWriter::doFinalization(Module &M) {
- // Release the name mangler object.
- delete Mang; Mang = 0;
-
OutStreamer.Finish();
return false;
}