www.digitalmars.com         C & C++   DMDScript  

digitalmars.D.bugs - [Issue 2346] New: ICE when comparing typedef'd class

reply d-bugmail puremagic.com writes:
http://d.puremagic.com/issues/show_bug.cgi?id=2346

           Summary: ICE when comparing typedef'd class
           Product: D
           Version: unspecified
          Platform: All
        OS/Version: All
            Status: NEW
          Severity: major
          Priority: P2
         Component: DMD
        AssignedTo: bugzilla digitalmars.com
        ReportedBy: jason.james.house gmail.com


The code below will cause a segmentation fault when compiled.

class foo{this(){}}
typedef foo bar;

void main(){
        foo a;
        bar b;
        auto x = (a==b);
}


-- 
Sep 07 2008
next sibling parent d-bugmail puremagic.com writes:
http://d.puremagic.com/issues/show_bug.cgi?id=2346


smjg iname.com changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |smjg iname.com
           Keywords|                            |ice-on-valid-code





Please remember to assign keywords to bug reports.  To everybody reading this:
Please look through issues you've reported and check for missing keywords.


-- 
Sep 09 2008
prev sibling next sibling parent d-bugmail puremagic.com writes:
http://d.puremagic.com/issues/show_bug.cgi?id=2346






The code should be accepted, but at least it's easy enough to convert the
segfault into an error with line number:

e2ir.c line 3612.

        cdfrom = e1->type->isClassHandle();
+       if (!cdfrom){ error("ICE: Bugzilla 2346");      return e;}
        cdto   = t->isClassHandle();
        if (cdfrom->isInterfaceDeclaration()) //<------ it is segfaulting here
        {


-- 
Apr 18 2009
prev sibling next sibling parent d-bugmail puremagic.com writes:
http://d.puremagic.com/issues/show_bug.cgi?id=2346






14:56:04 PDT ---
Created an attachment (id=355)
 --> (http://d.puremagic.com/issues/attachment.cgi?id=355)
Work in progress: analogous to a single level B+Tree

Internal error: e2ir.c 4339

This is code that was compiling using
Digital Mars D Compiler v2.029
dmd -c -Dddocs chunkf.d
until I did a little bit of refactoring.  

It's not clear to me how to reduce this and still retain the error, but if I
comment out lines 115-116,
        //foreach    (Wrd w;    freqWrd)
        //{    temp2 [w.name]    =    w.id;    }
then the error message goes away.  (Of course, it's useless for *my* purposes,
but I hope it narrows down what the error could be.)

-- 
Configure issuemail: http://d.puremagic.com/issues/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
May 10 2009
prev sibling next sibling parent d-bugmail puremagic.com writes:
http://d.puremagic.com/issues/show_bug.cgi?id=2346


Don <clugdbug yahoo.com.au> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |clugdbug yahoo.com.au






 Created an attachment (id=355)
--> (http://d.puremagic.com/issues/attachment.cgi?id=355) [details]
 Work in progress: analogous to a single level B+Tree
 
 Internal error: e2ir.c 4339
 
 This is code that was compiling using
 Digital Mars D Compiler v2.029
 dmd -c -Dddocs chunkf.d
 until I did a little bit of refactoring.  
 
 It's not clear to me how to reduce this and still retain the error, but if I
 comment out lines 115-116,
         //foreach    (Wrd w;    freqWrd)
         //{    temp2 [w.name]    =    w.id;    }
 then the error message goes away.  (Of course, it's useless for *my* purposes,
 but I hope it narrows down what the error could be.)
Don't put any more work into it, Walter has fixed this bug in the next release. -- Configure issuemail: http://d.puremagic.com/issues/userprefs.cgi?tab=email ------- You are receiving this mail because: -------
May 11 2009
prev sibling parent d-bugmail puremagic.com writes:
http://d.puremagic.com/issues/show_bug.cgi?id=2346


Don <clugdbug yahoo.com.au> changed:

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





Fixed DMD2.030 and 1.045

-- 
Configure issuemail: http://d.puremagic.com/issues/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
May 14 2009