summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMisha Brukman <brukman+llvm@gmail.com>2003-08-07 21:34:25 +0000
committerMisha Brukman <brukman+llvm@gmail.com>2003-08-07 21:34:25 +0000
commitf7066c76d268161ecbaad2e7b161c2003818d071 (patch)
tree66c27c53ea865b9690e73564c7f26d8c627c447b
parent35d402fbbaaa7b9db1b56757fb1b390a3889ebad (diff)
downloadllvm-f7066c76d268161ecbaad2e7b161c2003818d071.tar.gz
llvm-f7066c76d268161ecbaad2e7b161c2003818d071.tar.bz2
llvm-f7066c76d268161ecbaad2e7b161c2003818d071.tar.xz
Doxygen-ify the comments by using '///' instead of '//'.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@7694 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r--lib/Support/SystemUtils.cpp10
-rw-r--r--support/lib/Support/SystemUtils.cpp10
2 files changed, 10 insertions, 10 deletions
diff --git a/lib/Support/SystemUtils.cpp b/lib/Support/SystemUtils.cpp
index b18a8d50b4..0d414facbd 100644
--- a/lib/Support/SystemUtils.cpp
+++ b/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
diff --git a/support/lib/Support/SystemUtils.cpp b/support/lib/Support/SystemUtils.cpp
index b18a8d50b4..0d414facbd 100644
--- a/support/lib/Support/SystemUtils.cpp
+++ b/support/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