[Mono-bugs] [Bug 80738][Nor] Changed - Unexpected exception on IA-64
bugzilla-daemon at bugzilla.ximian.com
bugzilla-daemon at bugzilla.ximian.com
Wed Feb 7 12:30:38 EST 2007
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 vargaz at gmail.com.
http://bugzilla.ximian.com/show_bug.cgi?id=80738
--- shadow/80738 2007-02-06 08:11:37.000000000 -0500
+++ shadow/80738.tmp.25730 2007-02-07 12:30:38.000000000 -0500
@@ -2,13 +2,13 @@
Product: Mono: Runtime
Version: 1.2
OS: GNU/Linux [Other]
OS Details: Only on IA-64 machine
Status: NEW
Resolution:
-Severity:
+Severity: Unknown
Priority: Normal
Component: JIT
AssignedTo: lupus at ximian.com
ReportedBy: gilles.grospellier at cea.fr
QAContact: mono-bugs at ximian.com
TargetMilestone: ---
@@ -38,6 +38,34 @@
Additional Information:
it used to work with version 1.1.16.1
it only happen on IA-64 and works well on x86 and opteron.
In the method GetHiveName, i have changed the switch with several 'if
else' and it works.
+
+------- Additional Comments From vargaz at gmail.com 2007-02-07 12:30 -------
+A smaller testcase:
+<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<
+using System;
+
+public class Tests {
+
+ public enum RegistryHive
+ {
+ ClassesRoot = -2147483648,
+ Users = -2147483645
+ }
+
+ public static void Main () {
+ RegistryHive h = RegistryHive.ClassesRoot;
+
+ switch (h) {
+ case RegistryHive.ClassesRoot:
+ break;
+ case RegistryHive.Users:
+ break;
+ }
+
+ throw new NotImplementedException ();
+ }
+}
+>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
More information about the mono-bugs
mailing list