Prefix DSA specific options with dsa.

Make the dsa-alloc-list and dsa-free-list options hidden.

llvm-svn: 24864
This commit is contained in:
John Criswell 2005-12-19 20:14:38 +00:00
parent 45bb70d8f9
commit 757035ead9
1 changed files with 4 additions and 4 deletions

View 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 {