diff options
author | Misha Brukman <brukman+llvm@gmail.com> | 2003-08-07 21:34:25 +0000 |
---|---|---|
committer | Misha Brukman <brukman+llvm@gmail.com> | 2003-08-07 21:34:25 +0000 |
commit | e4d58ec26179989600f631f8b8b9c17d558aad55 (patch) | |
tree | d6984a39d4604bba7b7b5e03b4e9aad9be8c0cf5 /llvm/lib/Support | |
parent | b02e413f6590ffc30297c9061d4ab462d096c9fd (diff) | |
download | bcm5719-llvm-e4d58ec26179989600f631f8b8b9c17d558aad55.tar.gz bcm5719-llvm-e4d58ec26179989600f631f8b8b9c17d558aad55.zip |
Doxygen-ify the comments by using '///' instead of '//'.
llvm-svn: 7694
Diffstat (limited to 'llvm/lib/Support')
-rw-r--r-- | llvm/lib/Support/SystemUtils.cpp | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/llvm/lib/Support/SystemUtils.cpp b/llvm/lib/Support/SystemUtils.cpp index b18a8d50b4d..0d414facbd5 100644 --- a/llvm/lib/Support/SystemUtils.cpp +++ b/llvm/lib/Support/SystemUtils.cpp @@ -37,11 +37,11 @@ bool isExecutableFile(const std::string &ExeFileName) { } -// FindExecutable - Find a named executable, giving the argv[0] of program being -// executed. This allows us to find another LLVM tool if it is built into the -// same directory, but that directory is neither the current directory, nor in -// the PATH. If the executable cannot be found, return an empty string. -// +/// FindExecutable - Find a named executable, giving the argv[0] of program +/// being executed. This allows us to find another LLVM tool if it is built into +/// the same directory, but that directory is neither the current directory, nor +/// in the PATH. If the executable cannot be found, return an empty string. +/// std::string FindExecutable(const std::string &ExeName, const std::string &ProgramPath) { // First check the directory that bugpoint is in. We can do this if |