Re: [Mono-dev] mcs bug

2006-08-07 Thread Gert Driesen
-Original Message- From: [EMAIL PROTECTED] [mailto:mono-devel-list- [EMAIL PROTECTED] On Behalf Of Jeroen Frijters Sent: zondag 6 augustus 2006 12:55 To: Marek Safar Cc: mono-devel-list@lists.ximian.com Subject: Re: [Mono-dev] mcs bug Hi Marek, I spent quite a bit of time

Re: [Mono-dev] mcs bug

2006-08-06 Thread Marek Safar
Hello Jeroen, Yes, it is mcs/gmcs bug. Please, fill a bug report on bugzilla.ximian.com Thanks, Marek I ran into a bug in mcs. The program below obviously should print 42, but it prints 0, because mcs reuses loc.0 for two different things within the same expression. Regards, Jeroen using

Re: [Mono-dev] mcs bug

2006-08-06 Thread Jeroen Frijters
Cc: mono-devel-list@lists.ximian.com Subject: Re: [Mono-dev] mcs bug Hello Jeroen, Yes, it is mcs/gmcs bug. Please, fill a bug report on bugzilla.ximian.com Thanks, Marek I ran into a bug in mcs. The program below obviously should print 42, but it prints 0, because mcs reuses

[Mono-dev] mcs bug

2006-08-02 Thread Jeroen Frijters
Hi, I ran into a bug in mcs. The program below obviously should print 42, but it prints 0, because mcs reuses loc.0 for two different things within the same expression. Regards, Jeroen using System; class Repro { private int[] stack = new int[1]; private int cc; public

Re: [Mono-dev] mcs bug breaks MD build

2005-10-03 Thread Alexandre Miguel Pedro Gomes
Ohh well it just looked as an exceptional case so I just did point it. But I guess that if I did re-read the code I would get there... just to lazzy :) Thanks for the fixOn 10/3/05, Raja R Harinath [EMAIL PROTECTED] wrote: Hi,Alexandre Gomes [EMAIL PROTECTED] writes: In revision #51007 the

[Mono-dev] mcs bug breaks MD build

2005-10-02 Thread Alexandre Gomes
In revision #51007 the mcs/suport.cs file has broken the MD build. The problem is when mcs tries to assign the SeekableStreamReader.Position it trows an Exception can't seek that far back: 0. After looking the old code I guess that the problem can be related to this removed code: if (value == 0)

Re: [Mono-dev] mcs bug breaks MD build

2005-10-02 Thread Atsushi Eno
Hi, Just to make sure, in your box Extras/NUnit/AssemblyInfo.cs is empty, right? As far as I tried, mcs complains during parsing this file which was empty. Atsushi Eno In revision #51007 the mcs/suport.cs file has broken the MD build. The problem is when mcs tries to assign the

Re: [Mono-dev] mcs bug breaks MD build

2005-10-02 Thread Raja R Harinath
Hi, Alexandre Gomes [EMAIL PROTECTED] writes: In revision #51007 the mcs/suport.cs file has broken the MD build. The problem is when mcs tries to assign the SeekableStreamReader.Position it trows an Exception can't seek that far back: 0. Should be fixed in SVN r51106. Just an over-eager