Prefix DSA specific options with dsa.
authorJohn Criswell <criswell@uiuc.edu>
Mon, 19 Dec 2005 20:14:38 +0000 (20:14 +0000)
committerJohn Criswell <criswell@uiuc.edu>
Mon, 19 Dec 2005 20:14:38 +0000 (20:14 +0000)
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

lib/Analysis/DataStructure/Local.cpp

index 461b1a281bc0ffc20b01f93f8de50aa8b79c3a24..2ef4aa8af550e3b2be57799a97ff88dbc5df2b0c 100644 (file)
@@ -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 {