aboutsummaryrefslogtreecommitdiffstats
path: root/include/llvm/Transforms/Scalar.h
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2010-08-28 03:51:24 +0000
committerChris Lattner <sabre@nondot.org>2010-08-28 03:51:24 +0000
commitd474edd4c3d2e9a4e6b2a349f33df144b6e4152e (patch)
treee9c250c2119d44eff4be2827c1a6e6da1a4302b8 /include/llvm/Transforms/Scalar.h
parent48b94f4f8fba8cc639cc97abf41b6189cea8f11b (diff)
downloadexternal_llvm-d474edd4c3d2e9a4e6b2a349f33df144b6e4152e.tar.gz
external_llvm-d474edd4c3d2e9a4e6b2a349f33df144b6e4152e.tar.bz2
external_llvm-d474edd4c3d2e9a4e6b2a349f33df144b6e4152e.zip
remove the ABCD and SSI passes. They don't have any clients that
I'm aware of, aren't maintained, and LVI will be replacing their value. nlewycky approved this on irc. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@112355 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/llvm/Transforms/Scalar.h')
-rw-r--r--include/llvm/Transforms/Scalar.h20
1 files changed, 0 insertions, 20 deletions
diff --git a/include/llvm/Transforms/Scalar.h b/include/llvm/Transforms/Scalar.h
index 12f2a9812f..0320b12627 100644
--- a/include/llvm/Transforms/Scalar.h
+++ b/include/llvm/Transforms/Scalar.h
@@ -307,32 +307,12 @@ extern char &InstructionNamerID;
//===----------------------------------------------------------------------===//
//
-// SSI - This pass converts instructions to Static Single Information form
-// on demand.
-//
-FunctionPass *createSSIPass();
-
-//===----------------------------------------------------------------------===//
-//
-// SSI - This pass converts every non-void instuction to Static Single
-// Information form.
-//
-FunctionPass *createSSIEverythingPass();
-
-//===----------------------------------------------------------------------===//
-//
// GEPSplitter - Split complex GEPs into simple ones
//
FunctionPass *createGEPSplitterPass();
//===----------------------------------------------------------------------===//
//
-// ABCD - Elimination of Array Bounds Checks on Demand
-//
-FunctionPass *createABCDPass();
-
-//===----------------------------------------------------------------------===//
-//
// Sink - Code Sinking
//
FunctionPass *createSinkingPass();