svn commit: r194381 - projects/clangbsd/contrib/llvm/include/llvm/Support

Ed Schouten ed at FreeBSD.org
Wed Jun 17 18:34:13 UTC 2009


Author: ed
Date: Wed Jun 17 18:34:12 2009
New Revision: 194381
URL: http://svn.freebsd.org/changeset/base/194381

Log:
  Disable the GVNPass as well, because it causes Perl to coredump.

Modified:
  projects/clangbsd/contrib/llvm/include/llvm/Support/StandardPasses.h

Modified: projects/clangbsd/contrib/llvm/include/llvm/Support/StandardPasses.h
==============================================================================
--- projects/clangbsd/contrib/llvm/include/llvm/Support/StandardPasses.h	Wed Jun 17 17:59:36 2009	(r194380)
+++ projects/clangbsd/contrib/llvm/include/llvm/Support/StandardPasses.h	Wed Jun 17 18:34:12 2009	(r194381)
@@ -136,7 +136,7 @@ namespace llvm {
       if (UnrollLoops)
         PM->add(createLoopUnrollPass());          // Unroll small loops
       PM->add(createInstructionCombiningPass());  // Clean up after the unroller
-      PM->add(createGVNPass());                   // Remove redundancies
+      //PM->add(createGVNPass());                   // Remove redundancies
       PM->add(createMemCpyOptPass());             // Remove memcpy / form memset
       PM->add(createSCCPPass());                  // Constant prop with SCCP
     


More information about the svn-src-projects mailing list