[llvm-commits] CVS: llvm/tools/llvm-ld/llvm-ld.h

Reid Spencer reid at x10sys.com
Sun Nov 14 14:26:04 PST 2004



Changes in directory llvm/tools/llvm-ld:

llvm-ld.h updated: 1.1 -> 1.2
---
Log message:

Remove linking declarations (in Linker.h now)

---
Diffs of the changes:  (+1 -26)

Index: llvm/tools/llvm-ld/llvm-ld.h
diff -u llvm/tools/llvm-ld/llvm-ld.h:1.1 llvm/tools/llvm-ld/llvm-ld.h:1.2
--- llvm/tools/llvm-ld/llvm-ld.h:1.1	Sun Sep 12 20:27:53 2004
+++ llvm/tools/llvm-ld/llvm-ld.h	Sun Nov 14 16:25:26 2004
@@ -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 @@
                 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






More information about the llvm-commits mailing list