This is V9 specific stuff
authorChris Lattner <sabre@nondot.org>
Sun, 7 Nov 2004 00:42:29 +0000 (00:42 +0000)
committerChris Lattner <sabre@nondot.org>
Sun, 7 Nov 2004 00:42:29 +0000 (00:42 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@17546 91177308-0d34-0410-b5e6-96231b3b80d8

include/llvm/Transforms/Scalar.h

index 5515c6a59e602da85904bfa7dab275e648a6ea79..5d21d78f76fa68c12d38033cb32ed3bf87bc3194 100644 (file)
@@ -86,21 +86,6 @@ FunctionPass *createAggressiveDCEPass();
 //
 FunctionPass *createScalarReplAggregatesPass();
 
-//===----------------------------------------------------------------------===//
-// 
-// DecomposeMultiDimRefs - Convert multi-dimensional references consisting of
-// any combination of 2 or more array and structure indices into a sequence of
-// instructions (using getelementpr and cast) so that each instruction has at
-// most one index (except structure references, which need an extra leading
-// index of [0]).
-
-// This pass decomposes all multi-dimensional references in a function.
-FunctionPass *createDecomposeMultiDimRefsPass();
-
-// This function decomposes a single instance of such a reference.
-// Return value: true if the instruction was replaced; false otherwise.
-// 
-bool DecomposeArrayRef(GetElementPtrInst* GEP);
 
 //===----------------------------------------------------------------------===//
 //