mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-11-17 18:10:31 +00:00
ac57e6e498
cleanup, removed some #includes and moved Object Code Emitter out-of-line. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@74813 91177308-0d34-0410-b5e6-96231b3b80d8
32 lines
986 B
C++
32 lines
986 B
C++
//===-- FileWriters.h - File Writers Creation Functions ---------*- C++ -*-===//
|
|
//
|
|
// The LLVM Compiler Infrastructure
|
|
//
|
|
// This file is distributed under the University of Illinois Open Source
|
|
// License. See LICENSE.TXT for details.
|
|
//
|
|
//===----------------------------------------------------------------------===//
|
|
//
|
|
// Functions to add the various file writer passes.
|
|
//
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
#ifndef LLVM_CODEGEN_FILEWRITERS_H
|
|
#define LLVM_CODEGEN_FILEWRITERS_H
|
|
|
|
namespace llvm {
|
|
|
|
class PassManagerBase;
|
|
class ObjectCodeEmitter;
|
|
class TargetMachine;
|
|
class raw_ostream;
|
|
|
|
ObjectCodeEmitter *AddELFWriter(PassManagerBase &FPM, raw_ostream &O,
|
|
TargetMachine &TM);
|
|
ObjectCodeEmitter *AddMachOWriter(PassManagerBase &FPM, raw_ostream &O,
|
|
TargetMachine &TM);
|
|
|
|
} // end llvm namespace
|
|
|
|
#endif // LLVM_CODEGEN_FILEWRITERS_H
|