[Mono-bugs] [Bug 80086][Nor] Changed - [ARM] Crash when dealing with boxed enum/byte(?)
bugzilla-daemon at bugzilla.ximian.com
bugzilla-daemon at bugzilla.ximian.com
Wed Nov 29 15:47:05 EST 2006
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 lupus at ximian.com.
http://bugzilla.ximian.com/show_bug.cgi?id=80086
--- shadow/80086 2006-11-29 14:41:32.000000000 -0500
+++ shadow/80086.tmp.6418 2006-11-29 15:47:05.000000000 -0500
@@ -1,14 +1,14 @@
Bug#: 80086
Product: Mono: Runtime
Version: 1.2
-OS:
+OS: unknown
OS Details:
Status: NEW
Resolution:
-Severity:
+Severity: Unknown
Priority: Normal
Component: JIT
AssignedTo: lupus at ximian.com
ReportedBy: alp at atoker.com
QAContact: mono-bugs at ximian.com
TargetMilestone: ---
@@ -49,6 +49,27 @@
(object,intptr,intptr,intptr) <0xffffffff>
Native stacktrace:
./mono [0x1049bc]
./mono [0xecaa8]
+
+------- Additional Comments From lupus at ximian.com 2006-11-29 15:47 -------
+The simple repro is:
+using System;
+
+class T {
+
+ static void test (float f) {
+ Console.WriteLine (f);
+ }
+ static void Main () {
+ float f = 3.7f;
+ object o = f;
+ float g = (float)o;
+ test (g);
+ test ((float)o);
+ }
+}
+This has been fixed in svn.
+This triggers another error in a store.r4 in the server though, will
+look at that tomorrow.
More information about the mono-bugs
mailing list