summaryrefslogtreecommitdiff
path: root/lib/Analysis
diff options
context:
space:
mode:
authorAndrew Lenharth <andrewl@lenharth.org>2006-10-23 19:55:24 +0000
committerAndrew Lenharth <andrewl@lenharth.org>2006-10-23 19:55:24 +0000
commit12711dfb16b611b91db0edfc63a4513822d753f2 (patch)
tree06c8d3f984e5c3b593a54e4cb469506904ed2f70 /lib/Analysis
parent72be6e63b14cb87a12f6fd04604147df14a84799 (diff)
downloadllvm-12711dfb16b611b91db0edfc63a4513822d753f2.tar.gz
llvm-12711dfb16b611b91db0edfc63a4513822d753f2.tar.bz2
llvm-12711dfb16b611b91db0edfc63a4513822d753f2.tar.xz
Make these hack flags hidden, like other dsa hack flags
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@31136 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Analysis')
-rw-r--r--lib/Analysis/DataStructure/BottomUpClosure.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/Analysis/DataStructure/BottomUpClosure.cpp b/lib/Analysis/DataStructure/BottomUpClosure.cpp
index 84405ea373..a7104d570f 100644
--- a/lib/Analysis/DataStructure/BottomUpClosure.cpp
+++ b/lib/Analysis/DataStructure/BottomUpClosure.cpp
@@ -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>