summaryrefslogtreecommitdiff
path: root/include/llvm/Target/TargetMachine.h
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2010-02-02 22:31:11 +0000
committerChris Lattner <sabre@nondot.org>2010-02-02 22:31:11 +0000
commit3813d8adf3788dd01a4cb9db01c122cd5e6a13b9 (patch)
tree55623fadef6ba237b9de7ada29658ce4d77a67db /include/llvm/Target/TargetMachine.h
parent8334f068c4a7df344da704fdde49c2c6c0b18799 (diff)
downloadllvm-3813d8adf3788dd01a4cb9db01c122cd5e6a13b9.tar.gz
llvm-3813d8adf3788dd01a4cb9db01c122cd5e6a13b9.tar.bz2
llvm-3813d8adf3788dd01a4cb9db01c122cd5e6a13b9.tar.xz
Remove a bunch of stuff around the edges of the ELF writer.
Now the only use of the ELF writer is the JIT, which won't be easy to fix in the short term. :( :( git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@95148 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/llvm/Target/TargetMachine.h')
-rw-r--r--include/llvm/Target/TargetMachine.h6
1 files changed, 2 insertions, 4 deletions
diff --git a/include/llvm/Target/TargetMachine.h b/include/llvm/Target/TargetMachine.h
index 08096bc1c6..af6591e7f7 100644
--- a/include/llvm/Target/TargetMachine.h
+++ b/include/llvm/Target/TargetMachine.h
@@ -29,9 +29,7 @@ class TargetIntrinsicInfo;
class TargetJITInfo;
class TargetLowering;
class TargetFrameInfo;
-class MachineCodeEmitter;
class JITCodeEmitter;
-class ObjectCodeEmitter;
class TargetRegisterInfo;
class PassManagerBase;
class PassManager;
@@ -223,7 +221,7 @@ public:
}
/// addPassesToEmitMachineCode - Add passes to the specified pass manager to
- /// get machine code emitted. This uses a MachineCodeEmitter object to handle
+ /// get machine code emitted. This uses a JITCodeEmitter object to handle
/// actually outputting the machine code and resolving things like the address
/// of functions. This method returns true if machine code emission is
/// not supported.
@@ -280,7 +278,7 @@ public:
CodeGenOpt::Level);
/// addPassesToEmitMachineCode - Add passes to the specified pass manager to
- /// get machine code emitted. This uses a MachineCodeEmitter object to handle
+ /// get machine code emitted. This uses a JITCodeEmitter object to handle
/// actually outputting the machine code and resolving things like the address
/// of functions. This method returns true if machine code emission is
/// not supported.