mirror of
https://github.com/ldc-developers/ldc.git
synced 2025-05-12 13:55:57 +03:00
Added IrTypeFunction and IrTypeDelegate and eliminated IrDType. This means the Type::ir field can be removed. It's the final part needed for the move to a slightly more sane type system. Now the whole thing just needs to be cleaned up :P
Added -v-cg switch, which right now just prints "codegen: module.name (module/name.d)" to stdout, this can really help figuring out where, in some complex build command, things go wrong.
This commit is contained in:
parent
61514569ff
commit
c0f2af5afd
20 changed files with 148 additions and 129 deletions
|
@ -44,6 +44,11 @@ static cl::opt<bool, true> verbose("v",
|
|||
cl::ZeroOrMore,
|
||||
cl::location(global.params.verbose));
|
||||
|
||||
static cl::opt<bool, true> verbose_cg("v-cg",
|
||||
cl::desc("Verbose codegen"),
|
||||
cl::ZeroOrMore,
|
||||
cl::location(global.params.verbose_cg));
|
||||
|
||||
static cl::opt<bool, true> warnings("w",
|
||||
cl::desc("Enable warnings"),
|
||||
cl::ZeroOrMore,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue