comparison dmd/mars.h @ 31:2841234d2aea trunk

[svn r35] * Attributes on struct fields/methods now work * Updated object.d to 1.021 * Added -novalidate command line option. this is sometimes useful when debugging as it may let you read the .ll even if it's invalid.
author lindquist
date Thu, 04 Oct 2007 16:44:07 +0200
parents 788401029ecf
children 0c77619e803b
comparison
equal deleted inserted replaced
30:881158a93592 31:2841234d2aea
66 char warnings; // enable warnings 66 char warnings; // enable warnings
67 char pic; // generate position-independent-code for shared libs 67 char pic; // generate position-independent-code for shared libs
68 char cov; // generate code coverage data 68 char cov; // generate code coverage data
69 char nofloat; // code should not pull in floating point support 69 char nofloat; // code should not pull in floating point support
70 char noruntime; // code is not allowed to make implicit calls to the runtime 70 char noruntime; // code is not allowed to make implicit calls to the runtime
71 char novalidate;// no bitcode validation
71 char Dversion; // D version number 72 char Dversion; // D version number
72 73
73 char *argv0; // program name 74 char *argv0; // program name
74 Array *imppath; // array of char*'s of where to look for import modules 75 Array *imppath; // array of char*'s of where to look for import modules
75 Array *fileImppath; // array of char*'s of where to look for file import modules 76 Array *fileImppath; // array of char*'s of where to look for file import modules