Make these hack flags hidden, like other dsa hack flags
authorAndrew Lenharth <andrewl@lenharth.org>
Mon, 23 Oct 2006 19:55:24 +0000 (19:55 +0000)
committerAndrew Lenharth <andrewl@lenharth.org>
Mon, 23 Oct 2006 19:55:24 +0000 (19:55 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@31136 91177308-0d34-0410-b5e6-96231b3b80d8

lib/Analysis/DataStructure/BottomUpClosure.cpp

index 84405ea373cae5998200c15e74a1c8d7a4a8b6e8..a7104d570fd4bb31be2dc295f08a9edf3151e66f 100644 (file)
@@ -31,10 +31,10 @@ namespace {
   Statistic<> NumCallEdges("budatastructures", "Number of 'actual' call edges");
 
   cl::opt<bool>
-  AddGlobals("budatastructures-annotate-calls",
+  AddGlobals("budatastructures-annotate-calls", cl::Hidden,
             cl::desc("Annotate call sites with functions as they are resolved"));
   cl::opt<bool>
-  UpdateGlobals("budatastructures-update-from-globals",
+  UpdateGlobals("budatastructures-update-from-globals", cl::Hidden,
                cl::desc("Update local graph from global graph when processing function"));
 
   RegisterPass<BUDataStructures>