[Mono-bugs] [Bug 60932][Nor] New - Compiler bootstrapping problem with BigInteger
bugzilla-daemon@bugzilla.ximian.com
bugzilla-daemon@bugzilla.ximian.com
Wed, 30 Jun 2004 09:16:19 -0400 (EDT)
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 andy_murdoch@yahoo.com.
http://bugzilla.ximian.com/show_bug.cgi?id=60932
--- shadow/60932 2004-06-30 09:16:19.000000000 -0400
+++ shadow/60932.tmp.15722 2004-06-30 09:16:19.000000000 -0400
@@ -0,0 +1,43 @@
+Bug#: 60932
+Product: Mono: Class Libraries
+Version: unspecified
+OS:
+OS Details:
+Status: NEW
+Resolution:
+Severity:
+Priority: Normal
+Component: CORLIB
+AssignedTo: mono-bugs@ximian.com
+ReportedBy: andy_murdoch@yahoo.com
+QAContact: mono-bugs@ximian.com
+TargetMilestone: ---
+URL:
+Cc:
+Summary: Compiler bootstrapping problem with BigInteger
+
+Please fill in this template when reporting a bug, unless you know what you
+are doing.
+Description of Problem:
+
+When using the last packaged version of the runtime/compiler for mandrake
+9.1 (version 0.29 of mono and mono-develop), the Mono.Math BigInteger class
+does not compile.
+
+Steps to reproduce the problem:
+1. "make bootstrap" in the root mono dir
+
+Actual Results:
+Compiler errors, 4, starting from line 304 of Mono.Math BigInteger
+
+Expected Results:
+Successful compilation
+
+How often does this happen?
+Every time
+
+Additional Information:
+Simple fix to code of Mono.Math BigNumber, change line 303 from:
+ BigInteger val = new BigInteger (0);
+to:
+ BigInteger val = new BigInteger ((uint)0);