Enable register unit liveness by default.
authorJakob Stoklund Olesen <stoklund@2pi.dk>
Wed, 20 Jun 2012 22:52:22 +0000 (22:52 +0000)
committerJakob Stoklund Olesen <stoklund@2pi.dk>
Wed, 20 Jun 2012 22:52:22 +0000 (22:52 +0000)
Soon we won't need to compute live intervals for physical registers.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@158865 91177308-0d34-0410-b5e6-96231b3b80d8

lib/CodeGen/LiveIntervalAnalysis.cpp

index 153d1c37dfd92babf3edda883a16cc45dce36bed..09bf81772ba1b763d2a7b8e7abf1e8c76a5510ef 100644 (file)
@@ -41,7 +41,7 @@
 using namespace llvm;
 
 // Temporary option to enable regunit liveness.
-static cl::opt<bool> LiveRegUnits("live-regunits", cl::Hidden);
+static cl::opt<bool> LiveRegUnits("live-regunits", cl::Hidden, cl::init(true));
 
 STATISTIC(numIntervals , "Number of original intervals");