summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorFrancis Visoiu Mistrih <francisvm@yahoo.com>2019-07-10 15:46:36 +0000
committerFrancis Visoiu Mistrih <francisvm@yahoo.com>2019-07-10 15:46:36 +0000
commit3700736aa82df3d4181b7bd8cd8a9eac16a83642 (patch)
treedda72a800f49ebccc89fe7fbe167b6e146596aec
parent14cb8c1c70bbc04d3dd85a5ffae9cc60135b3f50 (diff)
downloadbcm5719-llvm-3700736aa82df3d4181b7bd8cd8a9eac16a83642.tar.gz
bcm5719-llvm-3700736aa82df3d4181b7bd8cd8a9eac16a83642.zip
[Remarks] Add cl::Hidden to -remarks-yaml-string-table
It was showing up in a lot of unrelated tools. llvm-svn: 365647
-rw-r--r--llvm/lib/Remarks/YAMLRemarkSerializer.cpp5
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).
OpenPOWER on IntegriCloud