Remove header files that were privatized
authorChris Lattner <sabre@nondot.org>
Mon, 1 Sep 2003 20:33:38 +0000 (20:33 +0000)
committerChris Lattner <sabre@nondot.org>
Mon, 1 Sep 2003 20:33:38 +0000 (20:33 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@8307 91177308-0d34-0410-b5e6-96231b3b80d8

include/llvm/CodeGen/PeepholeOpts.h [deleted file]
include/llvm/CodeGen/PreSelection.h [deleted file]

diff --git a/include/llvm/CodeGen/PeepholeOpts.h b/include/llvm/CodeGen/PeepholeOpts.h
deleted file mode 100644 (file)
index 2cbc778..0000000
+++ /dev/null
@@ -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
diff --git a/include/llvm/CodeGen/PreSelection.h b/include/llvm/CodeGen/PreSelection.h
deleted file mode 100644 (file)
index 42913fd..0000000
+++ /dev/null
@@ -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