Remove duplicate pass
authorChris Lattner <sabre@nondot.org>
Thu, 5 Jun 2003 20:51:10 +0000 (20:51 +0000)
committerChris Lattner <sabre@nondot.org>
Thu, 5 Jun 2003 20:51:10 +0000 (20:51 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@6631 91177308-0d34-0410-b5e6-96231b3b80d8

tools/llc/llc.cpp

index 9e3a875693df74c4a333908a536ba05b4c7f5eec..485b25ef5324ac3bed2cf3567c8b255540667665 100644 (file)
@@ -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.