diff options
author | Misha Brukman <brukman+llvm@gmail.com> | 2004-08-04 21:48:00 +0000 |
---|---|---|
committer | Misha Brukman <brukman+llvm@gmail.com> | 2004-08-04 21:48:00 +0000 |
commit | 7a750e1ff59c1b70108f94e3c7099fbfe8ea2f6f (patch) | |
tree | aeb7f70ecf6ecafcd6e2adbcb53672399dc66648 | |
parent | dee0f9b94c1b61cb36d623605f5ab4cbb3948b33 (diff) |
* 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
-rw-r--r-- | lib/Target/SparcV9/SparcV9CodeEmitter.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/Target/SparcV9/SparcV9CodeEmitter.cpp b/lib/Target/SparcV9/SparcV9CodeEmitter.cpp index 3e5849c39b..65edfb1cf7 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); |