Remove header files that were privatized

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@8307 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Chris Lattner 2003-09-01 20:33:38 +00:00
parent 67699ffe7f
commit 5ab12b579e
2 changed files with 0 additions and 31 deletions

View File

@ -1,15 +0,0 @@
//===-- llvm/CodeGen/PeepholeOpts.h ----------------------------*- C++ -*--===//
//
// External interface to peephole optimization pass operating on machine code.
//
//===----------------------------------------------------------------------===//
#ifndef LLVM_CODEGEN_PEEPHOLE_OPTS_H
#define LLVM_CODEGEN_PEEPHOLE_OPTS_H
class TargetMachine;
class FunctionPass;
FunctionPass *createPeepholeOptsPass(TargetMachine &Target);
#endif

View File

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