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


           Summary: Mono handles remainder by 1 incorrectly
    Classification: Mono
           Product: Mono: Runtime
           Version: SVN
          Platform: x86-64
        OS/Version: Other
            Status: NEW
          Severity: Normal
          Priority: P5 - None
         Component: JIT
        AssignedTo: [email protected]
        ReportedBy: [email protected]
         QAContact: [email protected]
          Found By: ---


Expected output: 0, 0.... 0
Actual output:  0, -1, -2... -7

Only occurs on x86-64 on mono head. Works fine on 1.9/2.0/2.0.1. Not tested
2.2.


using System;

namespace TestCase3
{
    class MainClass
    {
        public static void Main(string[] args)
        {
            for (int i=0; i < 8; i++)
                Console.WriteLine (i % 1);
    }
    }
}

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

Reply via email to