diff options
author | John Criswell <criswell@uiuc.edu> | 2005-12-19 20:14:38 +0000 |
---|---|---|
committer | John Criswell <criswell@uiuc.edu> | 2005-12-19 20:14:38 +0000 |
commit | 757035ead928de37204b2ed79829c8144cc2d639 (patch) | |
tree | 927fd67f403b0e1b218acccf7461d796c027a4f3 /llvm/lib/Analysis/DataStructure | |
parent | 45bb70d8f9d0364123534e6100147c8a0e68dc7e (diff) | |
download | bcm5719-llvm-757035ead928de37204b2ed79829c8144cc2d639.tar.gz bcm5719-llvm-757035ead928de37204b2ed79829c8144cc2d639.zip |
Prefix DSA specific options with dsa.
Make the dsa-alloc-list and dsa-free-list options hidden.
llvm-svn: 24864
Diffstat (limited to 'llvm/lib/Analysis/DataStructure')
-rw-r--r-- | llvm/lib/Analysis/DataStructure/Local.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/llvm/lib/Analysis/DataStructure/Local.cpp b/llvm/lib/Analysis/DataStructure/Local.cpp index 461b1a281bc..2ef4aa8af55 100644 --- a/llvm/lib/Analysis/DataStructure/Local.cpp +++ b/llvm/lib/Analysis/DataStructure/Local.cpp @@ -40,16 +40,16 @@ TrackIntegersAsPointers("dsa-track-integers", cl::Hidden, cl::desc("If this is set, track integers as potential pointers")); static cl::list<std::string> -AllocList("alloc-list", +AllocList("dsa-alloc-list", cl::value_desc("list"), cl::desc("List of functions that allocate memory from the heap"), - cl::CommaSeparated); + cl::CommaSeparated, cl::Hidden); static cl::list<std::string> -FreeList("free-list", +FreeList("dsa-free-list", cl::value_desc("list"), cl::desc("List of functions that free memory from the heap"), - cl::CommaSeparated); + cl::CommaSeparated, cl::Hidden); namespace llvm { namespace DS { |