[llvm] r236062 - RegisterCoalescer: hide terminal rule option by default

Matthias Braun matze at braunis.de
Tue Apr 28 16:55:11 PDT 2015


Author: matze
Date: Tue Apr 28 18:55:11 2015
New Revision: 236062

URL: http://llvm.org/viewvc/llvm-project?rev=236062&view=rev
Log:
RegisterCoalescer: hide terminal rule option by default

Modified:
    llvm/trunk/lib/CodeGen/RegisterCoalescer.cpp

Modified: llvm/trunk/lib/CodeGen/RegisterCoalescer.cpp
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/lib/CodeGen/RegisterCoalescer.cpp?rev=236062&r1=236061&r2=236062&view=diff
==============================================================================
--- llvm/trunk/lib/CodeGen/RegisterCoalescer.cpp (original)
+++ llvm/trunk/lib/CodeGen/RegisterCoalescer.cpp Tue Apr 28 18:55:11 2015
@@ -60,7 +60,7 @@ EnableJoining("join-liveintervals",
 
 static cl::opt<bool> UseTerminalRule("terminal-rule",
                                      cl::desc("Apply the terminal rule"),
-                                     cl::init(false));
+                                     cl::init(false), cl::Hidden);
 
 /// Temporary flag to test critical edge unsplitting.
 static cl::opt<bool>





More information about the llvm-commits mailing list