From 2deaf9f238cde8634429031696b443dcfa2bbf2f Mon Sep 17 00:00:00 2001 From: Christian Kamm Date: Tue, 26 Aug 2008 20:49:01 +0200 Subject: [PATCH] Do not set Dversion to 1. Dversion = 2 means we use post 1.000 additions to D1. --- dmd/mars.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dmd/mars.c b/dmd/mars.c index 1c12e19c..d71407b1 100644 --- a/dmd/mars.c +++ b/dmd/mars.c @@ -295,7 +295,7 @@ int main(int argc, char *argv[]) global.params.useInline = 0; // this one messes things up to a point where codegen breaks global.params.llvmInline = 0; // use this one instead to know if inline passes should be run global.params.obj = 1; - global.params.Dversion = 1; + global.params.Dversion = 2; global.params.quiet = 1; global.params.linkswitches = new Array();