mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-12-23 15:29:51 +00:00
17 lines
435 B
C
17 lines
435 B
C
|
//===-- llvm/CodeGen/PreSelection.h ----------------------------*- C++ -*--===//
|
||
|
//
|
||
|
// External interface to pre-selection pass that specializes LLVM
|
||
|
// code for a target machine.
|
||
|
//
|
||
|
//===----------------------------------------------------------------------===//
|
||
|
|
||
|
#ifndef LLVM_CODEGEN_PRE_SELECTION_H
|
||
|
#define LLVM_CODEGEN_PRE_SELECTION_H
|
||
|
|
||
|
class TargetMachine;
|
||
|
class Pass;
|
||
|
|
||
|
Pass *createPreSelectionPass(TargetMachine &Target);
|
||
|
|
||
|
#endif
|