Doxygen-ify the comments by using '///' instead of '//'.
authorMisha Brukman <brukman+llvm@gmail.com>
Thu, 7 Aug 2003 21:34:25 +0000 (21:34 +0000)
committerMisha Brukman <brukman+llvm@gmail.com>
Thu, 7 Aug 2003 21:34:25 +0000 (21:34 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@7694 91177308-0d34-0410-b5e6-96231b3b80d8

lib/Support/SystemUtils.cpp
support/lib/Support/SystemUtils.cpp

index b18a8d50b4dec4abf2cc131361a2ec3a904db42c..0d414facbd51fe458ea3a56abce2091830819277 100644 (file)
@@ -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
index b18a8d50b4dec4abf2cc131361a2ec3a904db42c..0d414facbd51fe458ea3a56abce2091830819277 100644 (file)
@@ -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