aboutsummaryrefslogtreecommitdiff
path: root/include/llvm/CodeGen/MachineCodeEmitter.h
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2002-12-02 21:21:36 +0000
committerChris Lattner <sabre@nondot.org>2002-12-02 21:21:36 +0000
commit928e23f9bafe41e5cce81bf98817bc9c825d972a (patch)
treedac78882ff79556bbcc97f27c9ce9d4518ff4ad5 /include/llvm/CodeGen/MachineCodeEmitter.h
parentb7a2d2256fede467c7f50444eb3cddadcd7d34c9 (diff)
Initial version of MachineCodeEmitter interface: empty
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@4864 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/llvm/CodeGen/MachineCodeEmitter.h')
-rw-r--r--include/llvm/CodeGen/MachineCodeEmitter.h20
1 files changed, 20 insertions, 0 deletions
diff --git a/include/llvm/CodeGen/MachineCodeEmitter.h b/include/llvm/CodeGen/MachineCodeEmitter.h
new file mode 100644
index 0000000000..2e8908343c
--- /dev/null
+++ b/include/llvm/CodeGen/MachineCodeEmitter.h
@@ -0,0 +1,20 @@
+//===-- llvm/CodeGen/MachineCodeEmitter.h - Code emission -------*- C++ -*-===//
+//
+// This file defines an abstract interface that is used by the machine code
+// emission framework to output the code. This allows machine code emission to
+// be seperated from concerns such as resolution of call targets, and where the
+// machine code will be written (memory or disk, f.e.).
+//
+//===----------------------------------------------------------------------===//
+
+#ifndef LLVM_CODEGEN_MACHINE_CODE_EMITTER_H
+#define LLVM_CODEGEN_MACHINE_CODE_EMITTER_H
+
+struct MachineCodeEmitter {
+
+
+
+
+};
+
+#endif