diff options
| author | bellard <bellard> | 2005-04-17 13:15:31 +0000 |
|---|---|---|
| committer | bellard <bellard> | 2005-04-17 13:15:31 +0000 |
| commit | 09f4ce9857f5e4dbe4d064fe81821b2ea953107c (patch) | |
| tree | 8a0374046ba52a551b4d25ffc8b03afa600a26c8 /i386-gen.c | |
| parent | 484ee920c1cc0b60ad25becd489e590f6d6d852a (diff) | |
| download | tinycc-09f4ce9857f5e4dbe4d064fe81821b2ea953107c.tar.gz tinycc-09f4ce9857f5e4dbe4d064fe81821b2ea953107c.tar.bz2 | |
_Bool type fix
Diffstat (limited to 'i386-gen.c')
| -rw-r--r-- | i386-gen.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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); |
