diff options
Diffstat (limited to 'include/clang/Driver/Compilation.h')
-rw-r--r-- | include/clang/Driver/Compilation.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/include/clang/Driver/Compilation.h b/include/clang/Driver/Compilation.h index eaa57914b8..1a6d7b02ea 100644 --- a/include/clang/Driver/Compilation.h +++ b/include/clang/Driver/Compilation.h @@ -109,6 +109,11 @@ private: void PrintJob(llvm::raw_ostream &OS, const Job &J, const char *Terminator, bool Quote) const; + /// ExecuteCommand - Execute an actual command. + /// + /// \return The result code of the subprocess. + int ExecuteCommand(const Command &C) const; + /// ExecuteJob - Execute a single job. /// /// \return The accumulated result code of the job. |