1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2025-01-31 20:51:52 +01:00

Revert r136528 "Enable compact region splitting by default."

While this generally helped x86-64, there was some large regressions
for i386.

llvm-svn: 136571
This commit is contained in:
Jakob Stoklund Olesen 2011-07-30 17:19:14 +00:00
parent 58ad594855
commit 0caedc8db8

View File

@ -52,7 +52,7 @@ STATISTIC(NumGlobalSplits, "Number of split global live ranges");
STATISTIC(NumLocalSplits, "Number of split local live ranges");
STATISTIC(NumEvicted, "Number of interferences evicted");
cl::opt<bool> CompactRegions("compact-regions", cl::init(true));
cl::opt<bool> CompactRegions("compact-regions");
static RegisterRegAlloc greedyRegAlloc("greedy", "greedy register allocator",
createGreedyRegisterAllocator);