From: Misha Brukman Date: Wed, 4 Aug 2004 21:48:00 +0000 (+0000) Subject: * Remove unnecessary comment X-Git-Url: http://plrg.eecs.uci.edu/git/?a=commitdiff_plain;h=7a750e1ff59c1b70108f94e3c7099fbfe8ea2f6f;p=oota-llvm.git * 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 --- diff --git a/lib/Target/SparcV9/SparcV9CodeEmitter.cpp b/lib/Target/SparcV9/SparcV9CodeEmitter.cpp index 3e5849c39b2..65edfb1cf7e 100644 --- a/lib/Target/SparcV9/SparcV9CodeEmitter.cpp +++ b/lib/Target/SparcV9/SparcV9CodeEmitter.cpp @@ -49,9 +49,9 @@ namespace { } bool SparcV9TargetMachine::addPassesToEmitMachineCode(FunctionPassManager &PM, - MachineCodeEmitter &MCE) { + MachineCodeEmitter &MCE) { PM.add(new SparcV9CodeEmitter(*this, MCE)); - PM.add(createSparcV9MachineCodeDestructionPass()); //Free stuff no longer needed + PM.add(createSparcV9MachineCodeDestructionPass()); return false; } @@ -586,7 +586,7 @@ inline void SparcV9CodeEmitter::emitFarCall(uint64_t Target, Function *F) { void SparcV9JITInfo::replaceMachineCodeForFunction (void *Old, void *New) { assert (TheJITResolver && - "Can only call replaceMachineCodeForFunction from within JIT"); + "Can only call replaceMachineCodeForFunction from within JIT"); uint64_t Target = (uint64_t)(intptr_t)New; uint64_t CodeBegin = (uint64_t)(intptr_t)Old; TheJITResolver->insertJumpAtAddr(Target, CodeBegin);