summaryrefslogtreecommitdiff
path: root/lib/Target/PowerPC/PPCTargetMachine.h
diff options
context:
space:
mode:
authorBill Wendling <isanbard@gmail.com>2007-02-08 01:39:44 +0000
committerBill Wendling <isanbard@gmail.com>2007-02-08 01:39:44 +0000
commiteb1ac3385096dd6f45a1548f3492f21648f55b4c (patch)
tree3287520c2c9c1ed9784304a202db68f8494f63fc /lib/Target/PowerPC/PPCTargetMachine.h
parent50e4e88d9797753390e86a513ece4e9ce7ab5d77 (diff)
downloadllvm-eb1ac3385096dd6f45a1548f3492f21648f55b4c.tar.gz
llvm-eb1ac3385096dd6f45a1548f3492f21648f55b4c.tar.bz2
llvm-eb1ac3385096dd6f45a1548f3492f21648f55b4c.tar.xz
Moved the MachOWriter and ELFWriter out of the Target/* files. Placed the
definition of it into the CodeGen library. This is so that a backend doesn't necessarily add in these writers if it doesn't use them (like in the lli program). git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@34034 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Target/PowerPC/PPCTargetMachine.h')
-rw-r--r--lib/Target/PowerPC/PPCTargetMachine.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/Target/PowerPC/PPCTargetMachine.h b/lib/Target/PowerPC/PPCTargetMachine.h
index af35cc5923..a249952aa1 100644
--- a/lib/Target/PowerPC/PPCTargetMachine.h
+++ b/lib/Target/PowerPC/PPCTargetMachine.h
@@ -69,10 +69,10 @@ public:
virtual bool addPreEmitPass(FunctionPassManager &PM, bool Fast);
virtual bool addAssemblyEmitter(FunctionPassManager &PM, bool Fast,
std::ostream &Out);
- virtual bool addObjectWriter(FunctionPassManager &PM, bool Fast,
- std::ostream &Out);
virtual bool addCodeEmitter(FunctionPassManager &PM, bool Fast,
MachineCodeEmitter &MCE);
+ virtual bool addSimpleCodeEmitter(FunctionPassManager &PM, bool Fast,
+ MachineCodeEmitter &MCE);
};
/// PPC32TargetMachine - PowerPC 32-bit target machine.