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 | 9fd58e0ae80dfdbed3c89c0591aa44c77dd4931c (patch) | |
tree | 0b3c3d0cc9dafcb36f50e485249d611e5e2abfee /tools | |
parent | 198e888705b2c73cddb3bec2f8c5498c9734e465 (diff) | |
download | external_llvm-9fd58e0ae80dfdbed3c89c0591aa44c77dd4931c.zip external_llvm-9fd58e0ae80dfdbed3c89c0591aa44c77dd4931c.tar.gz external_llvm-9fd58e0ae80dfdbed3c89c0591aa44c77dd4931c.tar.bz2 |
Insert declarations for two new functions that support the dependent
libraries feature.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@16043 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'tools')
-rw-r--r-- | tools/llvmc/CompilerDriver.h | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/tools/llvmc/CompilerDriver.h b/tools/llvmc/CompilerDriver.h index 092685f..a6d0be0 100644 --- a/tools/llvmc/CompilerDriver.h +++ b/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 /// @{ |