From: Bill Wendling Date: Tue, 10 Aug 2010 20:23:02 +0000 (+0000) Subject: Turn optimize cmps on by default so that we can get some testing by the nightly X-Git-Url: http://plrg.eecs.uci.edu/git/?a=commitdiff_plain;h=a54e3cddce8e9f5e84e1124466b9134f90961c84;p=oota-llvm.git Turn optimize cmps on by default so that we can get some testing by the nightly ARM testers. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@110718 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/CodeGen/PeepholeOptimizer.cpp b/lib/CodeGen/PeepholeOptimizer.cpp index 7ed41f4011f..96a2b6edf99 100644 --- a/lib/CodeGen/PeepholeOptimizer.cpp +++ b/lib/CodeGen/PeepholeOptimizer.cpp @@ -54,7 +54,7 @@ STATISTIC(NumReuse, "Number of extension results reused"); // Optimize Comparisons static cl::opt -EnableOptCmps("enable-optimize-cmps", cl::init(false), cl::Hidden); +EnableOptCmps("enable-optimize-cmps", cl::init(true), cl::Hidden); STATISTIC(NumEliminated, "Number of compares eliminated");