diff dmd/mars.c @ 40:8b0e809563df trunk

[svn r44] Lots of bug fixes. New array literal support New array ~= operator support (for single element) New with statement support More...
author lindquist
date Fri, 19 Oct 2007 07:43:21 +0200
parents 27b2f40bdb58
children 0c77619e803b
line wrap: on
line diff
--- a/dmd/mars.c	Wed Oct 10 06:21:31 2007 +0200
+++ b/dmd/mars.c	Fri Oct 19 07:43:21 2007 +0200
@@ -192,16 +192,16 @@
                  x86 x86-64 ppc32 ppc64\n\
   -nofloat       do not emit reference to floating point\n\
   -noruntime     do not allow code that generates implicit runtime calls\n\
-  -novalidate    do not run the validation pass before writing bitcode\n\
+  -noverify      do not run the validation pass before writing bitcode\n\
   -O             optimize, same as -O2\n\
   -O<n>          optimize at level <n> (0-5)\n\
   -o-            do not write object file\n\
   -od<objdir>    write object files to directory <objdir>\n\
   -of<filename>	 name output file to <filename>\n\
   -op            do not strip paths from source file\n\
-  -profile	     profile runtime performance of generated code\n\
+  -profile       profile runtime performance of generated code\n\
   -quiet         suppress unnecessary messages\n\
-  -release	     compile release version\n\
+  -release       compile release version\n\
   -run srcfile args...   run resulting program, passing args\n\
   -unittest      compile in unit tests\n\
   -v             verbose\n\
@@ -382,7 +382,7 @@
 		global.params.forceBE = 1;
         else if (strcmp(p + 1, "noruntime") == 0)
 		global.params.noruntime = 1;
-        else if (strcmp(p + 1, "novalidate") == 0)
+        else if (strcmp(p + 1, "noverify") == 0)
         global.params.novalidate = 1;
 	    else if (p[1] == 'o')
 	    {