Please do not reply to this email- if you want to comment on the bug, go to the URL shown below and enter your comments there.
Changed by [EMAIL PROTECTED] http://bugzilla.ximian.com/show_bug.cgi?id=76553 --- shadow/76553 2005-10-25 13:40:00.000000000 -0400 +++ shadow/76553.tmp.5882 2005-10-25 13:40:00.000000000 -0400 @@ -0,0 +1,59 @@ +Bug#: 76553 +Product: Mono: Runtime +Version: 1.1 +OS: +OS Details: +Status: NEW +Resolution: +Severity: +Priority: Major +Component: JIT +AssignedTo: [EMAIL PROTECTED] +ReportedBy: [EMAIL PROTECTED] +QAContact: [EMAIL PROTECTED] +TargetMilestone: --- +URL: +Cc: +Summary: Mono JIT on ARM has trouble with doubles + +Mono SVN head compiled for ARM, reportedly both high and low endian, +suffers this problem: + + using System; + + class T{ + static void Main (string [] args) { + Int64 a = 255; + double b = 255; + double c = (double)a; + + if (a == b) + Console.WriteLine ("a == b"); + if (a < b) + Console.WriteLine ("a < b"); + if (a > b) + Console.WriteLine ("a > b"); + if (a == c) + Console.WriteLine ("a == c"); + if (a < c) + Console.WriteLine ("a < c"); + if (a > c) + Console.WriteLine ("a > c"); + if (b == c) + Console.WriteLine ("b == c"); + if (b < c) + Console.WriteLine ("b < c"); + if (b > c) + Console.WriteLine ("b > c"); + } + } + + a == b + a < b + a > b + a == c + a < c + a > c + b == c + b < c + b > c _______________________________________________ mono-bugs maillist - [email protected] http://lists.ximian.com/mailman/listinfo/mono-bugs
