Re: [CIL users] gotos are not preceded by line directives

2011-01-05 Thread Gabriel Kerneis
On Wed, Jan 05, 2011 at 06:06:33PM -0500, Elnatan Reisner wrote: > Following up on a post from long ago, here is a patch which prints > #line directives before goto statements and sets the location of > gotos inserted when an && or || is unfolded to the location of the > statement within which the

Re: [CIL users] gotos are not preceded by line directives

2011-01-05 Thread Elnatan Reisner
Following up on a post from long ago, here is a patch which prints #line directives before goto statements and sets the location of gotos inserted when an && or || is unfolded to the location of the statement within which the operator resides. (Before, such inserted goto statements were giv

Re: [CIL users] gotos

2009-12-02 Thread Gabriel Kerneis
Hi, On Tue, Dec 01, 2009 at 06:21:55PM +0100, Mauro Baluda wrote: > Is it possible to avoid CIL to add goto's when they are not present in > the original code? No. For-loops are converted to while loops, which requires introducing gotos. Regards, -- Gabriel Kerneis ---