[Mono-bugs] [Bug 80024][Nor] Changed - [ARM] file inssel.c: line 3522 (mono_burg_emit): should not be reached

bugzilla-daemon at bugzilla.ximian.com bugzilla-daemon at bugzilla.ximian.com
Thu May 10 14:18:27 EDT 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 alp at atoker.com.

http://bugzilla.ximian.com/show_bug.cgi?id=80024

--- shadow/80024	2007-05-10 14:15:33.000000000 -0400
+++ shadow/80024.tmp.31285	2007-05-10 14:18:27.000000000 -0400
@@ -206,6 +206,25 @@
 				else
 					throw new Exception ("This case is not important");
 
   return val;
 }
 
+
+------- Additional Comments From alp at atoker.com  2007-05-10 14:18 -------
+To clarify, the last (ie. workaround) code block should be:
+
+object ReadType (Type type) {
+	object val;
+	DType dtype = Signature.TypeToDType (type);
+
+	if (dtype == DType.Byte)
+		val = ReadByte ();
+	else if (dtype == DType.UInt32)
+		val = ReadUInt32 ();
+	else if (dtype == DType.Boolean)
+		val = ReadBoolean ();
+	else
+		throw new Exception ("This case is not important");
+
+	return val;
+}


More information about the mono-bugs mailing list