From: Jakob Stoklund Olesen Date: Tue, 17 Nov 2009 21:23:49 +0000 (+0000) Subject: Disable -split-phi-edges to unbreak the buildbots X-Git-Url: http://plrg.eecs.uci.edu/git/?a=commitdiff_plain;h=202344e1240db60afa393198806e75256cde985c;p=oota-llvm.git Disable -split-phi-edges to unbreak the buildbots git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@89142 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/CodeGen/PHIElimination.cpp b/lib/CodeGen/PHIElimination.cpp index bd716c23444..948511c5fb1 100644 --- a/lib/CodeGen/PHIElimination.cpp +++ b/lib/CodeGen/PHIElimination.cpp @@ -40,7 +40,7 @@ STATISTIC(NumSplits, "Number of critical edges split on demand"); static cl::opt SplitEdges("split-phi-edges", cl::desc("Split critical edges during phi elimination"), - cl::init(true), cl::Hidden); + cl::init(false), cl::Hidden); char PHIElimination::ID = 0; static RegisterPass