aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorbellard <bellard>2005-04-17 13:15:31 +0000
committerbellard <bellard>2005-04-17 13:15:31 +0000
commit09f4ce9857f5e4dbe4d064fe81821b2ea953107c (patch)
tree8a0374046ba52a551b4d25ffc8b03afa600a26c8
parent484ee920c1cc0b60ad25becd489e590f6d6d852a (diff)
downloadtinycc-09f4ce9857f5e4dbe4d064fe81821b2ea953107c.tar.gz
tinycc-09f4ce9857f5e4dbe4d064fe81821b2ea953107c.tar.bz2
_Bool type fix
-rw-r--r--i386-gen.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/i386-gen.c b/i386-gen.c
index e988924..515c888 100644
--- a/i386-gen.c
+++ b/i386-gen.c
@@ -272,7 +272,7 @@ void store(int r, SValue *v)
} else {
if (bt == VT_SHORT)
o(0x66);
- if (bt == VT_BYTE)
+ if (bt == VT_BYTE || bt == VT_BOOL)
o(0x88);
else
o(0x89);