diff options
| -rw-r--r-- | llvm/lib/Remarks/YAMLRemarkSerializer.cpp | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/llvm/lib/Remarks/YAMLRemarkSerializer.cpp b/llvm/lib/Remarks/YAMLRemarkSerializer.cpp index 14de44fbe32..d64ae8e12ab 100644 --- a/llvm/lib/Remarks/YAMLRemarkSerializer.cpp +++ b/llvm/lib/Remarks/YAMLRemarkSerializer.cpp @@ -17,8 +17,9 @@ using namespace llvm; using namespace llvm::remarks; -cl::opt<bool> RemarksYAMLStringTable("remarks-yaml-string-table", - cl::init(false)); +cl::opt<bool> RemarksYAMLStringTable( + "remarks-yaml-string-table", cl::init(false), cl::Hidden, + cl::desc("Enable the usage of a string table with YAML remarks.")); // Use the same keys whether we use a string table or not (respectively, T is an // unsigned or a StringRef). |

