From: Chris Lattner Date: Thu, 5 Jun 2003 20:51:10 +0000 (+0000) Subject: Remove duplicate pass X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=5b4299c26d776fee322c8c7a5d44511f18366805;p=oota-llvm.git Remove duplicate pass git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@6631 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/tools/llc/llc.cpp b/tools/llc/llc.cpp index 9e3a875693d..485b25ef532 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.