changeset 306:e0ce0072f659

[project @ 2004-10-04 22:06:22 by bellard] faster (Daniel Gl?ckner)
author bellard
date Mon, 04 Oct 2004 22:06:22 +0000
parents db91cc43c90a
children 1e5313e0e93b
files i386-gen.c
diffstat 1 files changed, 2 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/i386-gen.c	Mon Oct 04 21:57:35 2004 +0000
+++ b/i386-gen.c	Mon Oct 04 22:06:22 2004 +0000
@@ -100,11 +100,11 @@
     ind = ind1;
 }
 
-void o(int c)
+void o(unsigned int c)
 {
     while (c) {
         g(c);
-        c = c / 256;
+        c = c >> 8;
     }
 }