Files
ldc/gen/toobj.h
Christian Kamm 95f12f04f1 Add '-singleobj' command line switch that will tell LDC to link LLVM modules internally and only emit a single object file.
The switch allows the optimizer and inliner to run on all modules at once and opens the door for template instantiation improvements that should lower compile time and executable size.
2009-03-07 19:38:00 +01:00

7 lines
114 B
C++

#ifndef LDC_GEN_TOOBJ_H
#define LDC_GEN_TOOBJ_H
void writeModule(llvm::Module* m, std::string filename);
#endif