New preselection pass that specializes LLVM code for a target machine,

while remaining in legal portable LLVM form and preserving type
information and type safety.


git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@3759 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Vikram S. Adve 2002-09-16 18:08:17 +00:00
parent 110d7f3c82
commit 2796860297

View File

@ -0,0 +1,16 @@
//===-- 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