_Bool type fix

tcc-xref
bellard 2005-04-17 13:15:31 +00:00
parent 484ee920c1
commit 09f4ce9857
1 changed files with 1 additions and 1 deletions

View File

@ -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);