mirror of
https://github.com/xomboverlord/ldc.git
synced 2026-01-17 13:23:14 +01:00
Did a lot of smaller cleans up here and there. Replaced more llvm::Foo with LLFoo for common stuff. Split up tollvm.cpp.
12 lines
307 B
C++
12 lines
307 B
C++
#ifndef LLVMDC_GEN_LINKER_H
|
|
#define LLVMDC_GEN_LINKER_H
|
|
|
|
/**
|
|
* Links the modules given in MV in to dst.
|
|
* @param dst Destination module.
|
|
* @param MV Vector of modules to link in to destination.
|
|
*/
|
|
void linkModules(llvm::Module* dst, const std::vector<llvm::Module*>& MV);
|
|
|
|
#endif // LLVMDC_GEN_LINKER_H
|