[llvm-commits] CVS: llvm/lib/Analysis/DataStructure/BottomUpClosure.cpp
Andrew Lenharth
alenhar2 at cs.uiuc.edu
Mon Oct 23 12:55:52 PDT 2006
Changes in directory llvm/lib/Analysis/DataStructure:
BottomUpClosure.cpp updated: 1.122 -> 1.123
---
Log message:
Make these hack flags hidden, like other dsa hack flags
---
Diffs of the changes: (+2 -2)
BottomUpClosure.cpp | 4 ++--
1 files changed, 2 insertions(+), 2 deletions(-)
Index: llvm/lib/Analysis/DataStructure/BottomUpClosure.cpp
diff -u llvm/lib/Analysis/DataStructure/BottomUpClosure.cpp:1.122 llvm/lib/Analysis/DataStructure/BottomUpClosure.cpp:1.123
--- llvm/lib/Analysis/DataStructure/BottomUpClosure.cpp:1.122 Mon Oct 23 14:53:37 2006
+++ llvm/lib/Analysis/DataStructure/BottomUpClosure.cpp Mon Oct 23 14:55:24 2006
@@ -31,10 +31,10 @@
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>
More information about the llvm-commits
mailing list