comparison dmd2/mars.c @ 811:8e6135be6999

Fixed ModuleInfo generation to no longer use the ModuleInfo class' default initializer for types/defaults, it's unsafe as initializers don't necesarily match the "formal" type. There might be explicit padding. Changed -g switch to emit DW_LANG_D debug info, make demangling work with a patched GDB, still more work to do for full support of D's Dwarf extensions. Added getNullValue helper method.
author Tomas Lindquist Olsen <tomas.l.olsen@gmail.com>
date Mon, 01 Dec 2008 02:10:16 +0100
parents 340acf1535d0
children d54f7cf84e6b ba390e5e9150
comparison
equal deleted inserted replaced
810:67fcd9df8b79 811:8e6135be6999
389 global.params.useDeprecated = 1; 389 global.params.useDeprecated = 1;
390 else if (strcmp(p + 1, "c") == 0) 390 else if (strcmp(p + 1, "c") == 0)
391 global.params.link = 0; 391 global.params.link = 0;
392 else if (strcmp(p + 1, "fPIC") == 0) 392 else if (strcmp(p + 1, "fPIC") == 0)
393 global.params.pic = 1; 393 global.params.pic = 1;
394 else if (strcmp(p + 1, "g") == 0 || strcmp(p + 1, "gc") == 0) 394 else if (strcmp(p + 1, "g") == 0)
395 global.params.symdebug = 1; 395 global.params.symdebug = 1;
396 else if (strcmp(p + 1, "gc") == 0)
397 global.params.symdebug = 2;
396 else if (strcmp(p + 1, "v") == 0) 398 else if (strcmp(p + 1, "v") == 0)
397 global.params.verbose = 1; 399 global.params.verbose = 1;
398 else if (strcmp(p + 1, "vv") == 0) { 400 else if (strcmp(p + 1, "vv") == 0) {
399 Logger::enable(); 401 Logger::enable();
400 very_verbose = true; 402 very_verbose = true;