diff options
author | Brian Gaeke <gaeke@uiuc.edu> | 2004-01-23 06:35:43 +0000 |
---|---|---|
committer | Brian Gaeke <gaeke@uiuc.edu> | 2004-01-23 06:35:43 +0000 |
commit | 4880432af8e3f8f393ddde70638aec12e6703f72 (patch) | |
tree | aec7b2ab66b65a356b58d371b013464276a89243 /llvm/lib/Target/PowerPC/PowerPCTargetMachine.cpp | |
parent | 78c36d2112e8836a3b47a631c5568fff02792c70 (diff) | |
download | bcm5719-llvm-4880432af8e3f8f393ddde70638aec12e6703f72.tar.gz bcm5719-llvm-4880432af8e3f8f393ddde70638aec12e6703f72.zip |
Add CodeEmitter and JITInfo stubs. Dump the old
PowerPCTargetMachine::addPassesToJITCompile() method, in favor of the
TargetJITInfo interface.
llvm-svn: 10971
Diffstat (limited to 'llvm/lib/Target/PowerPC/PowerPCTargetMachine.cpp')
-rw-r--r-- | llvm/lib/Target/PowerPC/PowerPCTargetMachine.cpp | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/llvm/lib/Target/PowerPC/PowerPCTargetMachine.cpp b/llvm/lib/Target/PowerPC/PowerPCTargetMachine.cpp index 11b5a799b12..3cf8c374e44 100644 --- a/llvm/lib/Target/PowerPC/PowerPCTargetMachine.cpp +++ b/llvm/lib/Target/PowerPC/PowerPCTargetMachine.cpp @@ -43,11 +43,9 @@ bool PowerPCTargetMachine::addPassesToEmitAssembly(PassManager &PM, } /// addPassesToJITCompile - Add passes to the specified pass manager to -/// implement a fast dynamic compiler for this target. Return true if this is -/// not supported for this target. +/// implement a fast dynamic compiler for this target. /// -bool PowerPCTargetMachine::addPassesToJITCompile(FunctionPassManager &PM) { - return true; +void PowerPCJITInfo::addPassesToJITCompile(FunctionPassManager &PM) { } } // end namespace llvm |