mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-01-19 04:32:19 +00:00
21 lines
595 B
C
21 lines
595 B
C
|
//===-- 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
|