diff options
| author | Reid Spencer <rspencer@reidspencer.com> | 2004-11-14 22:17:49 +0000 |
|---|---|---|
| committer | Reid Spencer <rspencer@reidspencer.com> | 2004-11-14 22:17:49 +0000 |
| commit | 5f7d9675d4e6f7792367b59719499d633c9e0ff5 (patch) | |
| tree | c2d2437b56514187ea94379fe2592a23d32b3a4e /llvm/tools/gccld | |
| parent | 5ccfd9aea1255aac752c09f32bcfcc312e1a4419 (diff) | |
| download | bcm5719-llvm-5f7d9675d4e6f7792367b59719499d633c9e0ff5.tar.gz bcm5719-llvm-5f7d9675d4e6f7792367b59719499d633c9e0ff5.zip | |
Remove linking declarations (in Linker.h now)
llvm-svn: 17788
Diffstat (limited to 'llvm/tools/gccld')
| -rw-r--r-- | llvm/tools/gccld/gccld.h | 24 |
1 files changed, 1 insertions, 23 deletions
diff --git a/llvm/tools/gccld/gccld.h b/llvm/tools/gccld/gccld.h index 7f62bad542a..6ac1ca00a85 100644 --- a/llvm/tools/gccld/gccld.h +++ b/llvm/tools/gccld/gccld.h @@ -12,6 +12,7 @@ //===----------------------------------------------------------------------===// #include "llvm/Module.h" +#include "llvm/Linker.h" #include <string> #include <set> @@ -19,12 +20,6 @@ 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 +42,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 |

