Re: [ID 20020525.001] do{} loosing value

2002-05-25 Thread Christian Jaeger
At 16:57 Uhr -0400 25.05.2002, Michael G Schwern wrote: >On Sat, May 25, 2002 at 07:10:17PM +0200, Christian Jaeger wrote: >> use strict; >> sub DEBUG(){0}; > > sub mysub { >> if (1) { # if(){} needed to trigger bug > >Not just if(){}, but it has to be if(CONSTANT){}. Which makes me think

Re: [ID 20020525.001] do{} loosing value

2002-05-25 Thread Michael G Schwern
On Sat, May 25, 2002 at 07:10:17PM +0200, Christian Jaeger wrote: > use strict; > sub DEBUG(){0}; > sub mysub { > if (1) { # if(){} needed to trigger bug Not just if(){}, but it has to be if(CONSTANT){}. Which makes me think something is being optimized away. use strict; sub DEBUG