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=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: [EMAIL PROTECTED] ReportedBy: [EMAIL PROTECTED] QAContact: [EMAIL PROTECTED] 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 [EMAIL PROTECTED] 2006-12-17 14:07 ------- Created an attachment (id=18318) mini-amd64.diff + +------- Additional Comments From [EMAIL PROTECTED] 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/. + _______________________________________________ mono-bugs maillist - [email protected] http://lists.ximian.com/mailman/listinfo/mono-bugs
