diff gen/toobj.cpp @ 650:aa6a0b7968f7

Added test case for bug #100 Removed dubious check for not emitting static private global in other modules without access. This should be handled properly somewhere else, it's causing unresolved global errors for stuff that should work (in MiniD)
author Tomas Lindquist Olsen <tomas.l.olsen@gmail.com>
date Sun, 05 Oct 2008 17:28:15 +0200
parents e83ba4ae4878
children 6aaa3d3c1183
line wrap: on
line diff
--- a/gen/toobj.cpp	Sun Oct 05 11:47:59 2008 +0200
+++ b/gen/toobj.cpp	Sun Oct 05 17:28:15 2008 +0200
@@ -618,11 +618,6 @@
     {
         Logger::println("data segment");
 
-        // we don't want to touch private static members at all !!!
-        // template instances should always be emitted
-        if (!DtoIsTemplateInstance(this) && prot() == PROTprivate && getModule() != gIR->dmodule)
-            return;
-
         // don't duplicate work
         if (this->ir.resolved) return;
         this->ir.resolved = true;