Re: [Mono-dev] No tail call optimization for virtual calls

2008-06-24 Thread Mark Probst
2008/6/21 Debacker [EMAIL PROTECTED]: Mono 1.9.1 does no seem to optimize tail virtcall's. As a consequence, I get a stackoverflow. Using Microsoft .NET 2.0 is works as expected. I have attached the IL source code (no C# since C# does not support tail optimization AFAIK). Is it a known

[Mono-dev] gmcs: System.Exception: Trying to emit a local from a different ILGenerator.

2008-06-24 Thread Casey Marshall
With SVN sources as of today (but it's been this way for a while): using System; using System.Threading; public interface xT { T Value { get; } } public class yT { xT[] xs; int l; public y(int n, int l) { xs = new xT[n];

Re: [Mono-dev] [PATCH] Exceptions on Winx64

2008-06-24 Thread Bill Holmes
I have updated the patch with Robert's suggestion. -bill On Sat, Jun 14, 2008 at 6:26 AM, Robert Jordan [EMAIL PROTECTED] wrote: Bill Holmes wrote: Hello All, After a week of digging though awful online documentation I have finally got a patch for the exception unit tests in the runtime for

Re: [Mono-dev] gmcs: System.Exception: Trying to emit a local from a different ILGenerator.

2008-06-24 Thread Marek Safar
Hello Casey, With SVN sources as of today (but it's been this way for a while): I believe I have fixed the issue Could you please re-test is with SVN HEAD. Thanks Marek ___ Mono-devel-list mailing list Mono-devel-list@lists.ximian.com

Re: [Mono-dev] gmcs: System.Exception: Trying to emit a local from a different ILGenerator.

2008-06-24 Thread Casey Marshall
On Tue, 2008-06-24 at 16:30 -0400, Marek Safar wrote: Hello Casey, With SVN sources as of today (but it's been this way for a while): I believe I have fixed the issue Could you please re-test is with SVN HEAD. Yeah, both the test and the real code I'm working with compile now.

[Mono-dev] OpenID Samples fail using xsp2

2008-06-24 Thread Valentin Sawadski
Hi, I wanted to tinker a bit with OpenID today and as always I tried the samples first (RelyingPartyPortal - to be precise). However, when I start xsp2 within my samples directory and navigate my browser to http://localhost:8080, I get the following error: Unrecognized attribute

[Mono-dev] HttpListener hangs with r106513

2008-06-24 Thread Casey Marshall
I've noticed that it recent SVN mono snapshots (r106513) using HttpListener and WebRequest in the same process hangs. This doesn't hang with 1.9.1, and didn't with less recent snapshots. I haven't tried having the client and server in different processes, and don't know if it reproduces there.