Get rid of the (apparently non-working) filePrinterEmitter which is added in
authorBrian Gaeke <gaeke@uiuc.edu>
Tue, 27 Jul 2004 19:37:37 +0000 (19:37 +0000)
committerBrian Gaeke <gaeke@uiuc.edu>
Tue, 27 Jul 2004 19:37:37 +0000 (19:37 +0000)
debug mode.  Its only effect seems to be the creation of an empty file...

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@15289 91177308-0d34-0410-b5e6-96231b3b80d8

lib/Target/SparcV9/SparcV9CodeEmitter.cpp

index 271dcf1c6b4e853e615c9f9dbd0346ae26c5a10e..3e5849c39b210abc0ced730038d918ffd187d402 100644 (file)
@@ -50,9 +50,7 @@ namespace {
 
 bool SparcV9TargetMachine::addPassesToEmitMachineCode(FunctionPassManager &PM,
                                                     MachineCodeEmitter &MCE) {
-  MachineCodeEmitter *M = &MCE;
-  DEBUG(M = MachineCodeEmitter::createFilePrinterEmitter(MCE));
-  PM.add(new SparcV9CodeEmitter(*this, *M));
+  PM.add(new SparcV9CodeEmitter(*this, MCE));
   PM.add(createSparcV9MachineCodeDestructionPass()); //Free stuff no longer needed
   return false;
 }