mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-08-19 19:44:55 +00:00
Initial version of MachineCodeEmitter interface: empty
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@4864 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
20
include/llvm/CodeGen/MachineCodeEmitter.h
Normal file
20
include/llvm/CodeGen/MachineCodeEmitter.h
Normal file
@@ -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
|
Reference in New Issue
Block a user