[Mono-bugs] [Bug 61481][Wis] New - Avoid movzx / test

bugzilla-daemon@bugzilla.ximian.com bugzilla-daemon@bugzilla.ximian.com
Tue, 13 Jul 2004 12:31:15 -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 bmaurer@users.sf.net.

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

--- shadow/61481	2004-07-13 12:31:15.000000000 -0400
+++ shadow/61481.tmp.14961	2004-07-13 12:31:15.000000000 -0400
@@ -0,0 +1,24 @@
+Bug#: 61481
+Product: Mono: Runtime
+Version: unspecified
+OS: 
+OS Details: 
+Status: NEW   
+Resolution: 
+Severity: 
+Priority: Wishlist
+Component: misc
+AssignedTo: mono-bugs@ximian.com                            
+ReportedBy: bmaurer@users.sf.net               
+QAContact: mono-bugs@ximian.com
+TargetMilestone: ---
+URL: 
+Cc: 
+Summary: Avoid movzx / test
+
+Today we have alot of:
+
+ 1d2:	0f b6 45 10          	movzx  eax,BYTE PTR [ebp+16]
+ 1d6:	85 c0                	test   eax,eax
+
+Its shorter and faster to do cmp BYTE PTR [...], 0.