diff options
Diffstat (limited to 'lib/CodeGen/VirtRegMap.cpp')
-rw-r--r-- | lib/CodeGen/VirtRegMap.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/CodeGen/VirtRegMap.cpp b/lib/CodeGen/VirtRegMap.cpp index c8847bde89..a4ffb1f804 100644 --- a/lib/CodeGen/VirtRegMap.cpp +++ b/lib/CodeGen/VirtRegMap.cpp @@ -39,12 +39,12 @@ namespace { cl::opt<SpillerName> SpillerOpt("spiller", - cl::desc("Spiller to use: (default: local)"), + cl::desc("Spiller to use: (default: simple)"), cl::Prefix, cl::values(clEnumVal(simple, " simple spiller"), clEnumVal(local, " local spiller"), clEnumValEnd), - cl::init(local)); + cl::init(simple)); } //===----------------------------------------------------------------------===// |