diff options
author | Mikhail Glushenkov <foldr@codedgers.com> | 2008-05-06 17:25:51 +0000 |
---|---|---|
committer | Mikhail Glushenkov <foldr@codedgers.com> | 2008-05-06 17:25:51 +0000 |
commit | be23113e93d1fddef2908d0fb461509d51e2b80c (patch) | |
tree | 0c26d6745de0267ece9ac94c566d220219952d7d /llvm/tools/llvmc2/CompilationGraph.h | |
parent | af15882a5a79e7b827e8bc3e2deb5fc1cf153cde (diff) | |
download | bcm5719-llvm-be23113e93d1fddef2908d0fb461509d51e2b80c.tar.gz bcm5719-llvm-be23113e93d1fddef2908d0fb461509d51e2b80c.zip |
Split the Build function into two parts.
llvm-svn: 50736
Diffstat (limited to 'llvm/tools/llvmc2/CompilationGraph.h')
-rw-r--r-- | llvm/tools/llvmc2/CompilationGraph.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/llvm/tools/llvmc2/CompilationGraph.h b/llvm/tools/llvmc2/CompilationGraph.h index 18c1e6b3b5f..bddd8bdf3a1 100644 --- a/llvm/tools/llvmc2/CompilationGraph.h +++ b/llvm/tools/llvmc2/CompilationGraph.h @@ -141,6 +141,12 @@ namespace llvmcc { // Return a reference to the list of tool names corresponding to // the given language name. Throws std::runtime_error. const tools_vector_type& getToolsVector(const std::string& LangName) const; + + // Pass the input file through the toolchain. + const Tool* PassThroughGraph (llvm::sys::Path& In, llvm::sys::Path Out, + const llvm::sys::Path& TempDir, + PathVector& JoinList) const; + }; /// GraphTraits support code. |