Stop propagating method names that violate the coding standard


git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@17498 91177308-0d34-0410-b5e6-96231b3b80d8
diff --git a/tools/llvmc/CompilerDriver.h b/tools/llvmc/CompilerDriver.h
index e15bc22..62e53e2 100644
--- a/tools/llvmc/CompilerDriver.h
+++ b/tools/llvmc/CompilerDriver.h
@@ -161,7 +161,7 @@
       /// @brief Set the output machine name.
       virtual void setOutputMachine(const std::string& machineName) = 0;
 
-      /// @brief Set Preprocessor specific options
+      /// @brief Set the options for a given phase.
       virtual void setPhaseArgs(Phases phase, const StringVector& opts) = 0; 
 
       /// @brief Set Library Paths
@@ -173,10 +173,12 @@
       /// @brief Set Library Paths
       virtual void setLibraryPaths(const StringVector& paths) = 0;
 
-      /// @brief Set the list of library paths to be searched for
-      /// libraries.
+      /// @brief Add a path to the list of library paths
       virtual void addLibraryPath( const sys::Path& libPath )  = 0;
 
+      /// @brief Add a path to the list of paths in which to find tools
+      virtual void addToolPath( const sys::Path& toolPath) = 0;
+
       /// @brief Set the list of -f options to be passed through
       virtual void setfPassThrough(const StringVector& fOpts) = 0;