diff options
author | Chris Lattner <sabre@nondot.org> | 2003-04-13 03:50:14 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2003-04-13 03:50:14 +0000 |
commit | af7ccd9bba91deb87dd7c6bcb4c86f9492002d30 (patch) | |
tree | d89047be77a474d50503ad230a7d80ff5b3d74fb /lib/Transforms/Instrumentation/TraceValues.cpp | |
parent | 5cd8ae925584b621de2f9746b58ecb17040c30ea (diff) |
Make help message more clear
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@5775 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Transforms/Instrumentation/TraceValues.cpp')
-rw-r--r-- | lib/Transforms/Instrumentation/TraceValues.cpp | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/lib/Transforms/Instrumentation/TraceValues.cpp b/lib/Transforms/Instrumentation/TraceValues.cpp index 8c44d4d28c..c19848dd4b 100644 --- a/lib/Transforms/Instrumentation/TraceValues.cpp +++ b/lib/Transforms/Instrumentation/TraceValues.cpp @@ -23,10 +23,12 @@ using std::string; static cl::opt<bool> DisablePtrHashing("tracedisablehashdisable", cl::Hidden, - cl::desc("Disable pointer hashing")); + cl::desc("Disable pointer hashing in the -trace or -tracem " + "passes")); static cl::list<string> -TraceFuncNames("tracefunc", cl::desc("trace only specific functions"), +TraceFuncNames("tracefunc", cl::desc("Only trace specific functions in the " + "-trace or -tracem passes"), cl::value_desc("function"), cl::Hidden); static void TraceValuesAtBBExit(BasicBlock *BB, |