mirror of
https://github.com/RPCSX/llvm.git
synced 2024-11-25 20:59:51 +00:00
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
This commit is contained in:
parent
3075160664
commit
61af913224
@ -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 {
|
||||
|
Loading…
Reference in New Issue
Block a user