aboutsummaryrefslogtreecommitdiffstats
path: root/lib
diff options
context:
space:
mode:
authorJohn Criswell <criswell@uiuc.edu>2005-12-19 20:14:38 +0000
committerJohn Criswell <criswell@uiuc.edu>2005-12-19 20:14:38 +0000
commit61af913224d97a16368bc21fe61c6da6fec63fc3 (patch)
treed46f4075174fd62b3c4f754518a92a0d951826d8 /lib
parent30751606643e36981e776e431b42daa8446a32f2 (diff)
downloadexternal_llvm-61af913224d97a16368bc21fe61c6da6fec63fc3.zip
external_llvm-61af913224d97a16368bc21fe61c6da6fec63fc3.tar.gz
external_llvm-61af913224d97a16368bc21fe61c6da6fec63fc3.tar.bz2
Prefix DSA specific options with dsa.
Make the dsa-alloc-list and dsa-free-list options hidden. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@24864 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib')
-rw-r--r--lib/Analysis/DataStructure/Local.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/lib/Analysis/DataStructure/Local.cpp b/lib/Analysis/DataStructure/Local.cpp
index 461b1a2..2ef4aa8 100644
--- a/lib/Analysis/DataStructure/Local.cpp
+++ b/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 {