aboutsummaryrefslogtreecommitdiffstats
path: root/include/llvm/Transforms
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2004-11-07 00:42:29 +0000
committerChris Lattner <sabre@nondot.org>2004-11-07 00:42:29 +0000
commit8226db66a2a1b8df268ed4df9709bfbca7bab156 (patch)
treebaae5221ca68887ae06f6d839d59bb7b11b355fe /include/llvm/Transforms
parent00a4fe48ac7d984c960f1c63b50d75668df27284 (diff)
downloadexternal_llvm-8226db66a2a1b8df268ed4df9709bfbca7bab156.zip
external_llvm-8226db66a2a1b8df268ed4df9709bfbca7bab156.tar.gz
external_llvm-8226db66a2a1b8df268ed4df9709bfbca7bab156.tar.bz2
This is V9 specific stuff
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@17546 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/llvm/Transforms')
-rw-r--r--include/llvm/Transforms/Scalar.h15
1 files changed, 0 insertions, 15 deletions
diff --git a/include/llvm/Transforms/Scalar.h b/include/llvm/Transforms/Scalar.h
index 5515c6a..5d21d78 100644
--- a/include/llvm/Transforms/Scalar.h
+++ b/include/llvm/Transforms/Scalar.h
@@ -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);
//===----------------------------------------------------------------------===//
//