diff options
author | Bill Wendling <isanbard@gmail.com> | 2007-02-08 01:39:44 +0000 |
---|---|---|
committer | Bill Wendling <isanbard@gmail.com> | 2007-02-08 01:39:44 +0000 |
commit | eb1ac3385096dd6f45a1548f3492f21648f55b4c (patch) | |
tree | 3287520c2c9c1ed9784304a202db68f8494f63fc /lib/Target/X86/X86.h | |
parent | 50e4e88d9797753390e86a513ece4e9ce7ab5d77 (diff) | |
download | external_llvm-eb1ac3385096dd6f45a1548f3492f21648f55b4c.tar.gz external_llvm-eb1ac3385096dd6f45a1548f3492f21648f55b4c.tar.bz2 external_llvm-eb1ac3385096dd6f45a1548f3492f21648f55b4c.zip |
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/X86/X86.h')
-rw-r--r-- | lib/Target/X86/X86.h | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/lib/Target/X86/X86.h b/lib/Target/X86/X86.h index b34df13180..c7663be018 100644 --- a/lib/Target/X86/X86.h +++ b/lib/Target/X86/X86.h @@ -46,12 +46,6 @@ FunctionPass *createX86CodePrinterPass(std::ostream &o, X86TargetMachine &tm); FunctionPass *createX86CodeEmitterPass(X86TargetMachine &TM, MachineCodeEmitter &MCE); -/// addX86ELFObjectWriterPass - Add passes to the FPM that output the generated -/// code as an ELF object file. -/// -void addX86ELFObjectWriterPass(FunctionPassManager &FPM, - std::ostream &o, X86TargetMachine &tm); - /// createX86EmitCodeToMemory - Returns a pass that converts a register /// allocated function into raw machine code in a dynamically /// allocated chunk of memory. |