Thread overview
[Issue 9068] New: ICE when trying to break outer loop from inside switch statement
November 24, 2012
http://d.puremagic.com/issues/show_bug.cgi?id=9068

           Summary: ICE when trying to break outer loop from inside switch
                    statement
           Product: D
           Version: D2
          Platform: x86_64
        OS/Version: Linux
            Status: NEW
          Severity: major
          Priority: P2
         Component: DMD
        AssignedTo: nobody@puremagic.com
        ReportedBy: hsteoh@quickfur.ath.cx


--- Comment #0 from hsteoh@quickfur.ath.cx 2012-11-23 16:09:18 PST ---
import std.range;
import std.stdio;

void main() {
        X: foreach (l; stdin.byLine()) {
                switch(l.front) {
                case 'q':
                        break X;
                default:
                }
        }
}

With latest git dmd:

Internal error: s2ir.c 731

-- 
Configure issuemail: http://d.puremagic.com/issues/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
December 20, 2012
http://d.puremagic.com/issues/show_bug.cgi?id=9068



--- Comment #1 from github-bugzilla@puremagic.com 2012-12-20 09:06:37 PST ---
Commits pushed to master at https://github.com/D-Programming-Language/dmd

https://github.com/D-Programming-Language/dmd/commit/4db6e34c293d9a6c6a2afe750b13cbb8814409e5 Issue 9068 - fix compiler error when breaking from some labelled loops.

Specifically, it affected loops that get implicitly wrapped into additional clauses, such as try/finally, causing the label to refer to another statement.

https://github.com/D-Programming-Language/dmd/commit/adcdfd7bd0cdea8b0f79cef4a687cd4eb77b3c53 Merge pull request #1394 from dsagal/bug9068

Issue 9068 - fix compiler error when breaking from some labelled loops.

-- 
Configure issuemail: http://d.puremagic.com/issues/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
December 20, 2012
http://d.puremagic.com/issues/show_bug.cgi?id=9068


hsteoh@quickfur.ath.cx changed:

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


--- Comment #2 from hsteoh@quickfur.ath.cx 2012-12-20 09:52:33 PST ---
Tested on latest git HEAD dmd, Linux/64bit, confirmed fixed by above pull request.

-- 
Configure issuemail: http://d.puremagic.com/issues/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
May 10, 2013
http://d.puremagic.com/issues/show_bug.cgi?id=9068



--- Comment #3 from github-bugzilla@puremagic.com 2013-05-10 12:36:35 PDT ---
Commit pushed to master at https://github.com/D-Programming-Language/dmd

https://github.com/D-Programming-Language/dmd/commit/2df2571896d647a6c9d32f754fd21bae1a70cd1e Move issue 9068 test to runnable/foreach5.d

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