summaryrefslogtreecommitdiffstats
path: root/llvm/tools/gccld/gccld.h
diff options
context:
space:
mode:
authorReid Spencer <rspencer@reidspencer.com>2004-12-14 04:20:08 +0000
committerReid Spencer <rspencer@reidspencer.com>2004-12-14 04:20:08 +0000
commiteedafda7bb5fdb6b77aab15482c9fc6c3f1a59a9 (patch)
treefbc2703e658dc6f035d618818a272401310ba49c /llvm/tools/gccld/gccld.h
parentcdefe0aebc65dd4e5efbbbe74719c1bc886a7d31 (diff)
downloadbcm5719-llvm-eedafda7bb5fdb6b77aab15482c9fc6c3f1a59a9.tar.gz
bcm5719-llvm-eedafda7bb5fdb6b77aab15482c9fc6c3f1a59a9.zip
For PR351:
* Change ExecWait calls to sys::Program::ExecuteAndWait * Convert to use sys::Path where it makes sense llvm-svn: 18929
Diffstat (limited to 'llvm/tools/gccld/gccld.h')
-rw-r--r--llvm/tools/gccld/gccld.h8
1 files changed, 3 insertions, 5 deletions
diff --git a/llvm/tools/gccld/gccld.h b/llvm/tools/gccld/gccld.h
index 48dcecee28d..922d535183d 100644
--- a/llvm/tools/gccld/gccld.h
+++ b/llvm/tools/gccld/gccld.h
@@ -29,17 +29,15 @@ GenerateBytecode (Module * M,
int
GenerateAssembly (const std::string & OutputFilename,
const std::string & InputFilename,
- const std::string & llc,
- char ** const envp);
+ const sys::Path & llc);
int GenerateCFile(const std::string &OutputFile, const std::string &InputFile,
- const std::string &llc, char ** const envp);
+ const sys::Path &llc);
int
GenerateNative (const std::string & OutputFilename,
const std::string & InputFilename,
const std::vector<std::string> & Libraries,
- const std::vector<std::string> & LibPaths,
- const std::string & gcc,
+ const sys::Path & gcc,
char ** const envp);
} // End llvm namespace
OpenPOWER on IntegriCloud