mirror of
https://github.com/ldc-developers/ldc.git
synced 2025-05-07 03:16:05 +03:00
Cleanup: Added missing include, killed superfluous newline in debug log.
This commit is contained in:
parent
b571d7a6c5
commit
87e72d27b3
1 changed files with 3 additions and 2 deletions
|
@ -46,9 +46,10 @@
|
|||
#include "gen/tollvm.h"
|
||||
#include "gen/optimizer.h"
|
||||
|
||||
#include "ir/irvar.h"
|
||||
#include "ir/irdsymbol.h"
|
||||
#include "ir/irmodule.h"
|
||||
#include "ir/irtype.h"
|
||||
#include "ir/irvar.h"
|
||||
|
||||
#if !MODULEINFO_IS_STRUCT
|
||||
#include "ir/irtypeclass.h"
|
||||
|
@ -227,7 +228,7 @@ llvm::Module* Module::genLLVMModule(llvm::LLVMContext& context, Ir* sir)
|
|||
Logger::enable();
|
||||
}
|
||||
|
||||
Logger::println("Generating module: %s\n", (md ? md->toChars() : toChars()));
|
||||
Logger::println("Generating module: %s", (md ? md->toChars() : toChars()));
|
||||
LOG_SCOPE;
|
||||
|
||||
if (global.params.verbose_cg)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue