diff options
author | Chris Lattner <sabre@nondot.org> | 2004-02-11 19:14:04 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2004-02-11 19:14:04 +0000 |
commit | 4b095b937e86a32af5bd2f04548c21399fa54fb3 (patch) | |
tree | ce8417c517cc4ffda13d7b76255f6b0c1dae8710 /llvm/lib/Analysis/ProfileInfoLoaderPass.cpp | |
parent | 512bd8de00a331215af422816890b5febd77c238 (diff) | |
download | bcm5719-llvm-4b095b937e86a32af5bd2f04548c21399fa54fb3.tar.gz bcm5719-llvm-4b095b937e86a32af5bd2f04548c21399fa54fb3.zip |
Cosmetic improvements to this option.
llvm-svn: 11331
Diffstat (limited to 'llvm/lib/Analysis/ProfileInfoLoaderPass.cpp')
-rw-r--r-- | llvm/lib/Analysis/ProfileInfoLoaderPass.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/llvm/lib/Analysis/ProfileInfoLoaderPass.cpp b/llvm/lib/Analysis/ProfileInfoLoaderPass.cpp index be956698793..dab4b0e53c5 100644 --- a/llvm/lib/Analysis/ProfileInfoLoaderPass.cpp +++ b/llvm/lib/Analysis/ProfileInfoLoaderPass.cpp @@ -21,7 +21,8 @@ using namespace llvm; namespace { cl::opt<std::string> ProfileInfoFilename("profile-info-file", cl::init("llvmprof.out"), - cl::desc("")); + cl::value_desc("filename"), + cl::desc("Profile file loaded by -profile-loader")); class LoaderPass : public Pass, public ProfileInfo { std::string Filename; |