changeset 586:df36eb4661a5

Fix bug I introduced in hg 574. Oops.
author Rob Landley <rob@landley.net>
date Fri, 04 Apr 2008 00:14:55 -0500
parents 7fc19a001568
children e790c9263068
files i386/gen.c
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/i386/gen.c	Thu Apr 03 22:54:56 2008 -0500
+++ b/i386/gen.c	Fri Apr 04 00:14:55 2008 -0500
@@ -265,7 +265,7 @@
         r = 7;
     } else {
         if (bt == VT_SHORT) gen_byte(0x66);
-        else if (bt == VT_BYTE || bt == VT_BOOL) gen_byte(0x88);
+        if (bt == VT_BYTE || bt == VT_BOOL) gen_byte(0x88);
         else gen_byte(0x89);
     }
     if (fr == VT_CONST ||