aboutsummaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2003-09-01 20:33:38 +0000
committerChris Lattner <sabre@nondot.org>2003-09-01 20:33:38 +0000
commit5ab12b579ea14e4164ae74ac21231211c4532431 (patch)
tree3302bab25d78e75e04e826190bb2b0899a555861 /include
parent67699ffe7f166f7172696a8337b41edd4db9e1e1 (diff)
downloadexternal_llvm-5ab12b579ea14e4164ae74ac21231211c4532431.zip
external_llvm-5ab12b579ea14e4164ae74ac21231211c4532431.tar.gz
external_llvm-5ab12b579ea14e4164ae74ac21231211c4532431.tar.bz2
Remove header files that were privatized
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@8307 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include')
-rw-r--r--include/llvm/CodeGen/PeepholeOpts.h15
-rw-r--r--include/llvm/CodeGen/PreSelection.h16
2 files changed, 0 insertions, 31 deletions
diff --git a/include/llvm/CodeGen/PeepholeOpts.h b/include/llvm/CodeGen/PeepholeOpts.h
deleted file mode 100644
index 2cbc778..0000000
--- a/include/llvm/CodeGen/PeepholeOpts.h
+++ /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
index 42913fd..0000000
--- a/include/llvm/CodeGen/PreSelection.h
+++ /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