From 61af913224d97a16368bc21fe61c6da6fec63fc3 Mon Sep 17 00:00:00 2001 From: John Criswell Date: Mon, 19 Dec 2005 20:14:38 +0000 Subject: [PATCH] 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 --- lib/Analysis/DataStructure/Local.cpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/lib/Analysis/DataStructure/Local.cpp b/lib/Analysis/DataStructure/Local.cpp index 461b1a281bc..2ef4aa8af55 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 -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 -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 { -- 2.34.1