diff dmd/func.c @ 957:31bbc7f3b817

Backed out changeset [369996c08420]. The argument and order dependent numbering of static ctors/dtors generally doesn't matter because other modules shouldn't reference their symbols. The next changeset will fix a LDC bug that caused such references within ModuleInfo.
author Christian Kamm <kamm incasoftware de>
date Sun, 15 Feb 2009 14:50:33 +0100
parents 369996c08420
children b30fe7e1dbb9
line wrap: on
line diff
--- a/dmd/func.c	Sun Feb 15 11:46:28 2009 +0100
+++ b/dmd/func.c	Sun Feb 15 14:50:33 2009 +0100
@@ -2420,7 +2420,7 @@
 
 StaticCtorDeclaration::StaticCtorDeclaration(Loc loc, Loc endloc)
     : FuncDeclaration(loc, endloc,
-      Lexer::idPool("_staticCtor"), STCstatic, NULL)
+      Identifier::generateId("_staticCtor"), STCstatic, NULL)
 {
 }
 
@@ -2438,9 +2438,6 @@
 {
     //printf("StaticCtorDeclaration::semantic()\n");
 
-    // get ourselves a scope-unique id
-    ident = sc->module->generateId(ident);
-
     type = new TypeFunction(NULL, Type::tvoid, FALSE, LINKd);
 
     /* If the static ctor appears within a template instantiation,
@@ -2524,7 +2521,7 @@
 
 StaticDtorDeclaration::StaticDtorDeclaration(Loc loc, Loc endloc)
     : FuncDeclaration(loc, endloc,
-      Lexer::idPool("_staticDtor"), STCstatic, NULL)
+      Identifier::generateId("_staticDtor"), STCstatic, NULL)
 {
     vgate = NULL;
 }
@@ -2541,9 +2538,6 @@
 
 void StaticDtorDeclaration::semantic(Scope *sc)
 {
-    // get ourselves a scope-unique id
-    ident = sc->module->generateId(ident);
-
     ClassDeclaration *cd;
     Type *tret;