mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-06-22 10:24:26 +00:00
Last batch of cleanups to Linker.h.
Update comments, fix * placement, fix method names that are not used in clang, add a linkInModule that takes a Mode and put it in Linker.cpp. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@181099 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
@ -24,3 +24,7 @@ Linker::Linker(Module* aModule) :
|
||||
|
||||
Linker::~Linker() {
|
||||
}
|
||||
|
||||
bool Linker::linkInModule(Module *Src, unsigned Mode, std::string *ErrorMsg) {
|
||||
return LinkModules(Composite, Src, Linker::DestroySource, ErrorMsg);
|
||||
}
|
||||
|
Reference in New Issue
Block a user