[llvm-commits] CVS: llvm/lib/Analysis/DataStructure/Local.cpp

John Criswell criswell at cs.uiuc.edu
Mon Dec 19 12:14:58 PST 2005



Changes in directory llvm/lib/Analysis/DataStructure:

Local.cpp updated: 1.137 -> 1.138
---
Log message:

Prefix DSA specific options with dsa.
Make the dsa-alloc-list and dsa-free-list options hidden.


---
Diffs of the changes:  (+4 -4)

 Local.cpp |    8 ++++----
 1 files changed, 4 insertions(+), 4 deletions(-)


Index: llvm/lib/Analysis/DataStructure/Local.cpp
diff -u llvm/lib/Analysis/DataStructure/Local.cpp:1.137 llvm/lib/Analysis/DataStructure/Local.cpp:1.138
--- llvm/lib/Analysis/DataStructure/Local.cpp:1.137	Mon Dec 19 13:54:23 2005
+++ llvm/lib/Analysis/DataStructure/Local.cpp	Mon Dec 19 14:14:38 2005
@@ -40,16 +40,16 @@
          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 {






More information about the llvm-commits mailing list