mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2025-01-27 06:54:30 +00:00
Turn on -new-live-intervals by default.
This uses a liveness algorithm that does not depend on data from the LiveVariables analysis, it is the first step towards removing LiveVariables completely. llvm-svn: 174774
This commit is contained in:
parent
3f1e87dccf
commit
43a4e46c11
@ -40,10 +40,10 @@
|
||||
#include <limits>
|
||||
using namespace llvm;
|
||||
|
||||
// Switch to the new experimental algorithm for computing live intervals.
|
||||
// Switch to the new algorithm for computing live intervals.
|
||||
static cl::opt<bool>
|
||||
NewLiveIntervals("new-live-intervals", cl::Hidden,
|
||||
cl::desc("Use new algorithm forcomputing live intervals"));
|
||||
NewLiveIntervals("new-live-intervals", cl::Hidden, cl::init(true),
|
||||
cl::desc("Use new algorithm for computing live intervals"));
|
||||
|
||||
char LiveIntervals::ID = 0;
|
||||
char &llvm::LiveIntervalsID = LiveIntervals::ID;
|
||||
|
Loading…
x
Reference in New Issue
Block a user