Thread overview
[Issue 637] New: internal symbols are missing the leading underscore
Dec 03, 2006
d-bugmail
Dec 12, 2006
d-bugmail
Dec 12, 2006
d-bugmail
Jan 24, 2007
d-bugmail
December 03, 2006
http://d.puremagic.com/issues/show_bug.cgi?id=637

           Summary: internal symbols are missing the leading underscore
           Product: D
           Version: 0.176
          Platform: PC
        OS/Version: Linux
            Status: NEW
          Severity: normal
          Priority: P2
         Component: DMD
        AssignedTo: bugzilla@digitalmars.com
        ReportedBy: thomas-dloop@kuehne.cn


The following symbols are missing the leading underscore:

D4wood4Tree6__initZ
D4wood4Tree6__vtblZ
D4wood4Tree7__ClassZ
D4wood7__arrayZ
D4wood8__assertFiZv
D4wood9__modctorFZv
D4wood9__moddtorFZv
D4wood9__modtestFZv
D4wood12__ModuleInfoZ


-- 

December 12, 2006
http://d.puremagic.com/issues/show_bug.cgi?id=637


bugzilla@digitalmars.com changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|NEW                         |RESOLVED
         Resolution|                            |FIXED




------- Comment #1 from bugzilla@digitalmars.com  2006-12-12 04:16 -------
Fixed DMD 0.176


-- 

December 12, 2006
http://d.puremagic.com/issues/show_bug.cgi?id=637


thomas-dloop@kuehne.cn changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|RESOLVED                    |REOPENED
         Resolution|FIXED                       |




------- Comment #2 from thomas-dloop@kuehne.cn  2006-12-12 14:25 -------
This issue is still present for DMD-0.177 on Linux.

dmd
> Digital Mars D Compiler v0.177
> Copyright (c) 1999-2006 by Digital Mars written by Walter Bright
> Documentation: www.digitalmars.com/d/index.html
> ...

cat a.d
> struct Foo{
>   int i = 0x12AB34FF;
>   void bar(){
>   }
> }

dmd -c a.d && nm --extern-only --defined-only a.o
> 0000000000000000 D D16TypeInfo_S1a3Foo6__initZ
> 0000000000000000 T _D1a3Foo3barMFZv
> 0000000000000008 R D1a3Foo6__initZ


-- 

January 24, 2007
http://d.puremagic.com/issues/show_bug.cgi?id=637


thomas-dloop@kuehne.cn changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|REOPENED                    |RESOLVED
         Resolution|                            |FIXED




------- Comment #3 from thomas-dloop@kuehne.cn  2007-01-24 07:46 -------
Fixed in DMD-0.178


--