[Mono-bugs] [Bug 80190][Nor] Changed - [PATCH] Problem concerning 64bit pointer
bugzilla-daemon at bugzilla.ximian.com
bugzilla-daemon at bugzilla.ximian.com
Sun Dec 17 14:10:47 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 robertj at gmx.net.
http://bugzilla.ximian.com/show_bug.cgi?id=80190
--- shadow/80190 2006-12-17 14:07:01.000000000 -0500
+++ shadow/80190.tmp.16369 2006-12-17 14:10:47.000000000 -0500
@@ -2,22 +2,22 @@
Product: Mono: Runtime
Version: 1.2
OS: All
OS Details: maybe all OS of x64 edition
Status: NEW
Resolution:
-Severity:
+Severity: Unknown
Priority: Normal
Component: JIT
AssignedTo: lupus at ximian.com
ReportedBy: c at tqzh.tk
QAContact: mono-bugs at ximian.com
TargetMilestone: ---
URL:
Cc:
-Summary: Problem concerning 64bit pointer
+Summary: [PATCH] Problem concerning 64bit pointer
Description of Problem:
It's aborted when a certain code concerning the pointer is compiled by VC#
and it executed by mono in linux (x64 edition).
@@ -79,6 +79,26 @@
------- Additional Comments From robertj at gmx.net 2006-12-17 14:07 -------
Created an attachment (id=18318)
mini-amd64.diff
+
+------- Additional Comments From robertj at gmx.net 2006-12-17 14:10 -------
+Since mcs doesn't emit the `conv.u' (is this a bug?), I've attached
+the complete IL source of the csc output from this source:
+
+public class Test
+{
+ public static int Main ()
+ {
+ unsafe {
+ int n;
+ int* p = &n;
+ *p = 3;
+ }
+ return 0;
+ }
+}
+
+It should be suitable as a test case for mono/tests/.
+
More information about the mono-bugs
mailing list