summaryrefslogtreecommitdiffstats
path: root/llvm/lib/CodeGen
diff options
context:
space:
mode:
authorAndrew Trick <atrick@apple.com>2012-11-13 22:19:48 +0000
committerAndrew Trick <atrick@apple.com>2012-11-13 22:19:48 +0000
commit459d891a438d3366bd8fce885783209e1b633529 (patch)
tree3b7592ee3b2841e844381f2f46604d73111f2ab5 /llvm/lib/CodeGen
parent47d58ce0df8197dceb81a91898a1021f0456b099 (diff)
downloadbcm5719-llvm-459d891a438d3366bd8fce885783209e1b633529.tar.gz
bcm5719-llvm-459d891a438d3366bd8fce885783209e1b633529.zip
Revert -join-splitedges to a boolean cmd line option.
llvm-svn: 167880
Diffstat (limited to 'llvm/lib/CodeGen')
-rw-r--r--llvm/lib/CodeGen/RegisterCoalescer.cpp5
1 files changed, 2 insertions, 3 deletions
diff --git a/llvm/lib/CodeGen/RegisterCoalescer.cpp b/llvm/lib/CodeGen/RegisterCoalescer.cpp
index b7839d6b0e6..7151164c42b 100644
--- a/llvm/lib/CodeGen/RegisterCoalescer.cpp
+++ b/llvm/lib/CodeGen/RegisterCoalescer.cpp
@@ -65,10 +65,9 @@ EnableJoining("join-liveintervals",
cl::init(true));
// Temporary flag to test critical edge unsplitting.
-static cl::opt<cl::boolOrDefault>
+static cl::opt<bool>
EnableJoinSplits("join-splitedges",
- cl::desc("Coalesce copies on split edges (default=subtarget)"),
- cl::init(cl::BOU_UNSET), cl::Hidden);
+ cl::desc("Coalesce copies on split edges (default=subtarget)"), cl::Hidden);
// Temporary flag to test global copy optimization.
static cl::opt<cl::boolOrDefault>
OpenPOWER on IntegriCloud