[llvm-commits] CVS: llvm/tools/gccld/gccld.h
Reid Spencer
reid at x10sys.com
Sun Nov 14 14:18:27 PST 2004
Changes in directory llvm/tools/gccld:
gccld.h updated: 1.9 -> 1.10
---
Log message:
Remove linking declarations (in Linker.h now)
---
Diffs of the changes: (+1 -23)
Index: llvm/tools/gccld/gccld.h
diff -u llvm/tools/gccld/gccld.h:1.9 llvm/tools/gccld/gccld.h:1.10
--- llvm/tools/gccld/gccld.h:1.9 Tue Jun 1 19:22:24 2004
+++ llvm/tools/gccld/gccld.h Sun Nov 14 16:17:49 2004
@@ -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 @@
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