diff options
| author | Reid Spencer <rspencer@reidspencer.com> | 2004-08-24 22:55:34 +0000 |
|---|---|---|
| committer | Reid Spencer <rspencer@reidspencer.com> | 2004-08-24 22:55:34 +0000 |
| commit | 44bc15064cb23adff1e38de9675f55fd60b1077b (patch) | |
| tree | 0b74ff217bfc20c1e7213c8ce4e09e0a8b4b579c /llvm/tools/llvmc | |
| parent | 7a0348b16357cc420b6c70ebe235014f5edb89f3 (diff) | |
| download | bcm5719-llvm-44bc15064cb23adff1e38de9675f55fd60b1077b.tar.gz bcm5719-llvm-44bc15064cb23adff1e38de9675f55fd60b1077b.zip | |
Insert declarations for two new functions that support the dependent
libraries feature.
llvm-svn: 16043
Diffstat (limited to 'llvm/tools/llvmc')
| -rw-r--r-- | llvm/tools/llvmc/CompilerDriver.h | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/llvm/tools/llvmc/CompilerDriver.h b/llvm/tools/llvmc/CompilerDriver.h index 092685f53bc..a6d0be084b6 100644 --- a/llvm/tools/llvmc/CompilerDriver.h +++ b/llvm/tools/llvmc/CompilerDriver.h @@ -16,6 +16,7 @@ #include <string> #include <vector> +#include "Support/SetVector.h" namespace llvm { /// This class provides the high level interface to the LLVM Compiler Driver. @@ -194,8 +195,16 @@ namespace llvm { private: Action* GetAction(ConfigData* cd, const std::string& input, const std::string& output, Phases phase ); + bool DoAction(Action* a); + std::string GetPathForLinkageItem(const std::string& link_item, + const std::string& dir); + + bool ProcessLinkageItem(const std::string& link_item, + SetVector<std::string>& set, + std::string& err); + /// @} /// @name Data /// @{ |

