ICE when breaking outer loop from switch statement

2012-11-23 Thread H. S. Teoh
Stumbled into this today: http://d.puremagic.com/issues/show_bug.cgi?id=9068 A workaround is to put the loop in its own function and do a return instead of "break X". Or an uglier workaround is to use a boolean flag checked right after the switch statement. In my case, I didn't have much

Re: ICE when breaking outer loop from switch statement

2012-11-23 Thread Timon Gehr
On 11/24/2012 01:16 AM, H. S. Teoh wrote: Stumbled into this today: http://d.puremagic.com/issues/show_bug.cgi?id=9068 A workaround is to put the loop in its own function and do a return instead of "break X". Or an uglier workaround is to use a boolean flag checked right after the switc