* Remove unnecessary comment

* Fix alignment of code
* Tabs to spaces


git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@15505 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Misha Brukman
2004-08-04 21:48:00 +00:00
parent dee0f9b94c
commit 7a750e1ff5

View File

@@ -51,7 +51,7 @@ namespace {
bool SparcV9TargetMachine::addPassesToEmitMachineCode(FunctionPassManager &PM,
MachineCodeEmitter &MCE) {
PM.add(new SparcV9CodeEmitter(*this, MCE));
PM.add(createSparcV9MachineCodeDestructionPass()); //Free stuff no longer needed
PM.add(createSparcV9MachineCodeDestructionPass());
return false;
}