aboutsummaryrefslogtreecommitdiffstats
path: root/lib/Target/SparcV9/SparcV9CodeEmitter.cpp
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2003-12-20 09:17:40 +0000
committerChris Lattner <sabre@nondot.org>2003-12-20 09:17:40 +0000
commit583b9d8455f311fba46f72e9b3d644743dc27ce5 (patch)
tree320d9944e44cb172d86d4520d27d888645b3a6e4 /lib/Target/SparcV9/SparcV9CodeEmitter.cpp
parent07f32d48f1e16bcdc621985549548a5849215238 (diff)
downloadexternal_llvm-583b9d8455f311fba46f72e9b3d644743dc27ce5.zip
external_llvm-583b9d8455f311fba46f72e9b3d644743dc27ce5.tar.gz
external_llvm-583b9d8455f311fba46f72e9b3d644743dc27ce5.tar.bz2
Hoist some sparc specific code into the sparc target
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@10554 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Target/SparcV9/SparcV9CodeEmitter.cpp')
-rw-r--r--lib/Target/SparcV9/SparcV9CodeEmitter.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Target/SparcV9/SparcV9CodeEmitter.cpp b/lib/Target/SparcV9/SparcV9CodeEmitter.cpp
index 99f90ff..71aa626 100644
--- a/lib/Target/SparcV9/SparcV9CodeEmitter.cpp
+++ b/lib/Target/SparcV9/SparcV9CodeEmitter.cpp
@@ -53,7 +53,7 @@ bool SparcTargetMachine::addPassesToEmitMachineCode(FunctionPassManager &PM,
MachineCodeEmitter *M = &MCE;
DEBUG(M = MachineCodeEmitter::createFilePrinterEmitter(MCE));
PM.add(new SparcV9CodeEmitter(*this, *M));
- PM.add(createMachineCodeDestructionPass()); // Free stuff no longer needed
+ PM.add(createSparcMachineCodeDestructionPass()); //Free stuff no longer needed
return false;
}