[Mono-bugs] [Bug 71576][Wis] Changed - ABCREM should obtain relationship info from % operators

bugzilla-daemon@bugzilla.ximian.com bugzilla-daemon@bugzilla.ximian.com
Fri, 21 Jan 2005 11:19:13 -0500 (EST)


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 bmaurer@users.sf.net.

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

--- shadow/71576	2005-01-21 10:54:22.000000000 -0500
+++ shadow/71576.tmp.30633	2005-01-21 11:19:13.000000000 -0500
@@ -54,6 +54,14 @@
 
 Throws an exception.
 
 ------- Additional Comments From vargaz@gmail.com  2005-01-21 10:54 -------
 Thats true, but if we replace int with uint (as in the hashtable code),
 then it should work.
+
+------- Additional Comments From bmaurer@users.sf.net  2005-01-21 11:19 -------
+Actually, in your test case, we should probably fold the mod up into a
+mod.un. It is going to be faster (at least on x86), and require fewer
+bytes of code (no cdq). Also, if that 10 were a 16, it would allow us
+to avoid the div completely.
+
+I think ABCREM has the code to do this.