mirror of
git://repo.or.cz/tinycc.git
synced 2026-06-17 15:44:18 +08:00
_Bool type fix
This commit is contained in:
parent
484ee920c1
commit
09f4ce9857
@ -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);
|
||||
|
||||
Loading…
Reference in New Issue
Block a user