From: Dale Johannesen Date: Mon, 27 Oct 2008 02:10:21 +0000 (+0000) Subject: Increase default setting of tail-merge-threshold to X-Git-Url: http://plrg.eecs.uci.edu/git/?a=commitdiff_plain;h=622addbe49ffdc611adb315fb22756e23fe7b222;p=oota-llvm.git Increase default setting of tail-merge-threshold to 150, based on llvm-test measurements. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@58225 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/CodeGen/BranchFolding.cpp b/lib/CodeGen/BranchFolding.cpp index 3b30423c52b..aedd7c9be7e 100644 --- a/lib/CodeGen/BranchFolding.cpp +++ b/lib/CodeGen/BranchFolding.cpp @@ -42,7 +42,7 @@ static cl::opt FlagEnableTailMerge("enable-tail-merge", static cl::opt TailMergeThreshold("tail-merge-threshold", cl::desc("Max number of predecessors to consider tail merging"), - cl::init(100), cl::Hidden); + cl::init(150), cl::Hidden); namespace { struct VISIBILITY_HIDDEN BranchFolder : public MachineFunctionPass {