Make help message more clear
llvm-svn: 5775
diff --git a/llvm/lib/Transforms/Instrumentation/TraceValues.cpp b/llvm/lib/Transforms/Instrumentation/TraceValues.cpp
index 8c44d4d..c19848d 100644
--- a/llvm/lib/Transforms/Instrumentation/TraceValues.cpp
+++ b/llvm/lib/Transforms/Instrumentation/TraceValues.cpp
@@ -23,10 +23,12 @@
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,