mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-12-13 20:32:21 +00:00
Remove linking declarations (in Linker.h now)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@17788 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
4c1af902ad
commit
6903c86348
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user