Converts some global and param fields from pointers to value types.
Reviewed-on: https://github.com/dlang/dmd/pull/11245
gcc/d/ChangeLog:
* dmd/MERGE: Merge upstream dmd
1831b24ff.
* d-lang.cc (d_init_options): Remove initialization of updated fields.
(d_handle_option): Adjust for new field types.
/* Default extern(C++) mangling to C++14. */
global.params.cplusplus = CppStdRevisionCpp14;
- global.params.linkswitches = new Strings ();
- global.params.libfiles = new Strings ();
- global.params.objfiles = new Strings ();
- global.params.ddocfiles = new Strings ();
-
/* Warnings and deprecations are disabled by default. */
global.params.useDeprecated = DIAGNOSTICoff;
global.params.warnings = DIAGNOSTICoff;
global.params.imppath = new Strings ();
global.params.fileImppath = new Strings ();
- global.params.modFileAliasStrings = new Strings ();
/* Extra GDC-specific options. */
d_option.fonly = NULL;
break;
case OPT_fdoc_inc_:
- global.params.ddocfiles->push (arg);
+ global.params.ddocfiles.push (arg);
break;
case OPT_fdruntime:
break;
case OPT_fmodule_file_:
- global.params.modFileAliasStrings->push (arg);
+ global.params.modFileAliasStrings.push (arg);
if (!strchr (arg, '='))
error ("bad argument for %<-fmodule-file%>: %qs", arg);
break;
-cef1e7991121a22f50e9966ea407805015922bc7
+1831b24fffe35fd0e332c194fdf8723ba3c930a5
The first line of this file holds the git revision number of the last
merge done from the dlang/dmd repository.
{
OutBuffer buf;
OutBuffer dotmods;
- Array<const char *> *ms = global.params.modFileAliasStrings;
+ Array<const char *> *ms = &global.params.modFileAliasStrings;
const size_t msdim = ms ? ms->length : 0;
for (size_t i = 0; i < packages->length; i++)
// Override with DDOCFILE specified in the sc.ini file
char *p = getenv("DDOCFILE");
if (p)
- global.params.ddocfiles->shift(p);
+ global.params.ddocfiles.shift(p);
// Override with the ddoc macro files from the command line
- for (size_t i = 0; i < global.params.ddocfiles->length; i++)
+ for (size_t i = 0; i < global.params.ddocfiles.length; i++)
{
- FileName f((*global.params.ddocfiles)[i]);
+ FileName f(global.params.ddocfiles[i]);
File file(&f);
readFile(m->loc, &file);
// BUG: convert file contents to UTF-8 before use
CHECKACTION checkAction; // action to take when bounds, asserts or switch defaults are violated
DString argv0; // program name
- Array<const char *> *modFileAliasStrings; // array of char*'s of -I module filename alias strings
+ Array<const char *> modFileAliasStrings; // array of char*'s of -I module filename alias strings
Array<const char *> *imppath; // array of char*'s of where to look for import modules
Array<const char *> *fileImppath; // array of char*'s of where to look for file import modules
DString objdir; // .obj/.lib file output directory
bool doDocComments; // process embedded documentation comments
DString docdir; // write documentation file to docdir directory
DString docname; // write documentation file to docname
- Array<const char *> *ddocfiles; // macro include files for Ddoc
+ Array<const char *> ddocfiles; // macro include files for Ddoc
bool doHdrGeneration; // process embedded documentation comments
DString hdrdir; // write 'header' file to docdir directory
Strings runargs; // arguments for executable
// Linker stuff
- Array<const char *> *objfiles;
- Array<const char *> *linkswitches;
- Array<const char *> *libfiles;
- Array<const char *> *dllfiles;
+ Array<const char *> objfiles;
+ Array<const char *> linkswitches;
+ Array<const char *> libfiles;
+ Array<const char *> dllfiles;
DString deffile;
DString resfile;
DString exefile;