[PATCH] D34897: Change default for -print-whole-regmask to false

Matt Arsenault via Phabricator via llvm-commits llvm-commits at lists.llvm.org
Fri Jun 30 10:14:59 PDT 2017


arsenm created this revision.
Herald added a subscriber: wdng.

The dump for this can be huge and most of the time it
probably isn't interesting to scroll through the output.


https://reviews.llvm.org/D34897

Files:
  lib/CodeGen/MachineInstr.cpp


Index: lib/CodeGen/MachineInstr.cpp
===================================================================
--- lib/CodeGen/MachineInstr.cpp
+++ lib/CodeGen/MachineInstr.cpp
@@ -76,7 +76,7 @@
 static cl::opt<bool> PrintWholeRegMask(
     "print-whole-regmask",
     cl::desc("Print the full contents of regmask operands in IR dumps"),
-    cl::init(true), cl::Hidden);
+    cl::init(false), cl::Hidden);
 
 //===----------------------------------------------------------------------===//
 // MachineOperand Implementation


-------------- next part --------------
A non-text attachment was scrubbed...
Name: D34897.104889.patch
Type: text/x-patch
Size: 518 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/llvm-commits/attachments/20170630/22ccd6f5/attachment.bin>


More information about the llvm-commits mailing list