aboutsummaryrefslogtreecommitdiff
path: root/tools/llvmc2/CompilationGraph.h
diff options
context:
space:
mode:
authorMikhail Glushenkov <foldr@codedgers.com>2008-05-06 17:25:51 +0000
committerMikhail Glushenkov <foldr@codedgers.com>2008-05-06 17:25:51 +0000
commit2ba4c5ababa878b05a7de1e97a98df50d8bcf6c4 (patch)
treef8e0a507dcc3fd97b723d530a99cab70bb3edb7e /tools/llvmc2/CompilationGraph.h
parentd81887841cef9c1fe40451c3f16cb53525b2ee2e (diff)
Split the Build function into two parts.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@50736 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'tools/llvmc2/CompilationGraph.h')
-rw-r--r--tools/llvmc2/CompilationGraph.h6
1 files changed, 6 insertions, 0 deletions
diff --git a/tools/llvmc2/CompilationGraph.h b/tools/llvmc2/CompilationGraph.h
index 18c1e6b3b5..bddd8bdf3a 100644
--- a/tools/llvmc2/CompilationGraph.h
+++ b/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.