[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:34:56 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-07 12:30:38.000000000 -0500
+++ shadow/80738.tmp.25833	2007-02-07 12:34:56.000000000 -0500
@@ -66,6 +66,38 @@
 		}
 
 		throw new NotImplementedException ();
 	}
 }
 >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
+
+------- Additional Comments From vargaz at gmail.com  2007-02-07 12:34 -------
+I mean this one:
+<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<
+using System;
+
+public class Tests {
+
+	public enum RegistryHive
+	{
+		ClassesRoot = -2147483648,
+		Users = -2147483645
+	}
+
+	public static int Main () {
+		RegistryHive h = RegistryHive.ClassesRoot;
+
+		switch (h) {
+		case RegistryHive.ClassesRoot:
+			return 0;
+		case RegistryHive.Users:
+			break;
+		}
+
+		throw new NotImplementedException ();
+	}
+}
+>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
+
+This one fails on ia32 with defaults opts, but runs with -O=-all.
+
+


More information about the mono-bugs mailing list