diff options
author | Mikhail Glushenkov <foldr@codedgers.com> | 2008-05-06 17:27:37 +0000 |
---|---|---|
committer | Mikhail Glushenkov <foldr@codedgers.com> | 2008-05-06 17:27:37 +0000 |
commit | 5f2577a95d74a4e15ddf9b55f1e9e8f19ebc5800 (patch) | |
tree | eb1b4f1ef20b2a9805cb9f35255531b46c4aa984 /tools/llvmc2/CompilationGraph.h | |
parent | d14857f86bd1d4fb0b97c550fbc45f04d70c5105 (diff) | |
download | external_llvm-5f2577a95d74a4e15ddf9b55f1e9e8f19ebc5800.zip external_llvm-5f2577a95d74a4e15ddf9b55f1e9e8f19ebc5800.tar.gz external_llvm-5f2577a95d74a4e15ddf9b55f1e9e8f19ebc5800.tar.bz2 |
Remove unnecessary argument from PassThroughGraph
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@50740 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'tools/llvmc2/CompilationGraph.h')
-rw-r--r-- | tools/llvmc2/CompilationGraph.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/llvmc2/CompilationGraph.h b/tools/llvmc2/CompilationGraph.h index bf46fa5..b7f5d8e 100644 --- a/tools/llvmc2/CompilationGraph.h +++ b/tools/llvmc2/CompilationGraph.h @@ -153,7 +153,7 @@ namespace llvmcc { const tools_vector_type& getToolsVector(const std::string& LangName) const; // Pass the input file through the toolchain. - const JoinTool* PassThroughGraph (llvm::sys::Path& In, llvm::sys::Path Out, + const JoinTool* PassThroughGraph (llvm::sys::Path& In, const llvm::sys::Path& TempDir) const; }; |