summaryrefslogtreecommitdiff
path: root/tools
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2003-06-05 20:51:10 +0000
committerChris Lattner <sabre@nondot.org>2003-06-05 20:51:10 +0000
commit5b4299c26d776fee322c8c7a5d44511f18366805 (patch)
tree463d6860bad711c5133454214cd141696d3dcf1e /tools
parent9b5fd22bd9b3faaa8a445348b50bd3133b27bf94 (diff)
downloadllvm-5b4299c26d776fee322c8c7a5d44511f18366805.tar.gz
llvm-5b4299c26d776fee322c8c7a5d44511f18366805.tar.bz2
llvm-5b4299c26d776fee322c8c7a5d44511f18366805.tar.xz
Remove duplicate pass
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@6631 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'tools')
-rw-r--r--tools/llc/llc.cpp4
1 files changed, 0 insertions, 4 deletions
diff --git a/tools/llc/llc.cpp b/tools/llc/llc.cpp
index 9e3a875693..485b25ef53 100644
--- a/tools/llc/llc.cpp
+++ b/tools/llc/llc.cpp
@@ -118,10 +118,6 @@ main(int argc, char **argv)
<< Opt->getPassName() << "\n";
}
- // Decompose multi-dimensional refs into a sequence of 1D refs
- // FIXME: This is sparc specific!
- Passes.add(createDecomposeMultiDimRefsPass());
-
// Replace malloc and free instructions with library calls.
// Do this after tracing until lli implements these lib calls.
// For now, it will emulate malloc and free internally.