From 5b4299c26d776fee322c8c7a5d44511f18366805 Mon Sep 17 00:00:00 2001 From: Chris Lattner Date: Thu, 5 Jun 2003 20:51:10 +0000 Subject: [PATCH] Remove duplicate pass git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@6631 91177308-0d34-0410-b5e6-96231b3b80d8 --- tools/llc/llc.cpp | 4 ---- 1 file changed, 4 deletions(-) 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.