diff options
author | Reid Spencer <rspencer@reidspencer.com> | 2004-11-14 22:25:26 +0000 |
---|---|---|
committer | Reid Spencer <rspencer@reidspencer.com> | 2004-11-14 22:25:26 +0000 |
commit | 0cb8c8c2af5645538aeed50dda6e53443385edd0 (patch) | |
tree | f03c02fd119ced1e816a0e7ef36ef5bffb9518d3 /llvm/tools/llvm-ld | |
parent | e7814f62b946993387c645ca7dd3a8eca5b7cf39 (diff) | |
download | bcm5719-llvm-0cb8c8c2af5645538aeed50dda6e53443385edd0.tar.gz bcm5719-llvm-0cb8c8c2af5645538aeed50dda6e53443385edd0.zip |
Remove linking declarations (in Linker.h now)
llvm-svn: 17793
Diffstat (limited to 'llvm/tools/llvm-ld')
-rw-r--r-- | llvm/tools/llvm-ld/llvm-ld.h | 27 |
1 files changed, 1 insertions, 26 deletions
diff --git a/llvm/tools/llvm-ld/llvm-ld.h b/llvm/tools/llvm-ld/llvm-ld.h index 85bf933a029..0b1f920937a 100644 --- a/llvm/tools/llvm-ld/llvm-ld.h +++ b/llvm/tools/llvm-ld/llvm-ld.h @@ -12,19 +12,11 @@ //===----------------------------------------------------------------------===// #include "llvm/Module.h" - -#include <string> -#include <set> +#include "llvm/Linker.h" #include <ostream> namespace llvm { -void -GetAllDefinedSymbols (Module *M, std::set<std::string> &DefinedSymbols); - -void -GetAllUndefinedSymbols(Module *M, std::set<std::string> &UndefinedSymbols); - int GenerateBytecode (Module * M, bool Strip, @@ -47,21 +39,4 @@ GenerateNative (const std::string & OutputFilename, const std::string & gcc, char ** const envp); -std::auto_ptr<Module> -LoadObject (const std::string & FN, std::string &OutErrorMessage); - -std::string FindLib(const std::string &Filename, - const std::vector<std::string> &Paths, - bool SharedObjectOnly = false); - -void LinkLibraries (const char * progname, Module* HeadModule, - const std::vector<std::string> & Libraries, - const std::vector<std::string> & LibPaths, - bool Verbose, bool Native); -bool -LinkFiles (const char * progname, - Module * HeadModule, - const std::vector<std::string> & Files, - bool Verbose); - } // End llvm namespace |