https://bugzilla.novell.com/show_bug.cgi?id=646744

https://bugzilla.novell.com/show_bug.cgi?id=646744#c0


           Summary: mcs fails with internal error when doing flow analysis
                    for large structs
    Classification: Mono
           Product: Mono: Compilers
           Version: SVN
          Platform: Other
        OS/Version: Other
            Status: NEW
          Severity: Major
          Priority: P5 - None
         Component: C#
        AssignedTo: [email protected]
        ReportedBy: [email protected]
         QAContact: [email protected]
          Found By: ---
           Blocker: ---


Testcase:
<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<

using System;
using System.Threading;
using System.Runtime.CompilerServices;

public class Tests
{

struct Alpha {
    public long a,b,c,d,e,f,g,h,i,j,k,l,m,n,o,p,q,r,s,t,u,v;
}

struct Beta {
    public Alpha a,b,c,d,e,f,g,h,i,j,k,l,m,n,o,p,q,r,s,t,u,v;
}

struct Gamma {
    public Beta a,b,c,d,e,f,g,h,i,j,k,l,m,n,o,p,q,r,s,t,u,v;
}

    static void InitMe (out Gamma noMercyWithTheStack) {
        noMercyWithTheStack = new Gamma ();
    }

    public static int test_0_float_load_and_store_with_big_offset ()
    {
        Gamma noMercyWithTheStack;

        InitMe (out noMercyWithTheStack);

        return 0;
    }

    public static int Main (String[] args) {
        return 0;
    }
}
>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>

This breaks the runtime tests.

-- 
Configure bugmail: https://bugzilla.novell.com/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the QA contact for the bug.
You are the assignee for the bug.
_______________________________________________
mono-bugs maillist  -  [email protected]
http://lists.ximian.com/mailman/listinfo/mono-bugs

Reply via email to