aboutsummaryrefslogtreecommitdiff
path: root/Changelog
diff options
context:
space:
mode:
authorThomas Preud'homme <robotux@celest.fr>2014-02-06 20:51:47 +0800
committerThomas Preud'homme <robotux@celest.fr>2014-02-06 21:40:22 +0800
commitb0b5165d1668373c5d7b7933da599426f33e723b (patch)
treeb4773e5e68a85f6712ddb51a731a029dd3732b5f /Changelog
parente571850d794c46b55f1a0fb0ffb22d594bee1d69 (diff)
downloadtinycc-b0b5165d1668373c5d7b7933da599426f33e723b.tar.gz
tinycc-b0b5165d1668373c5d7b7933da599426f33e723b.tar.bz2
Def signedness != signed != unsigned for char
When checking for exact compatibility between types (such as in __builtin_types_compatible_p) consider the case of default signedness to be incompatible with both of the explicit signedness for char. That is, char is incompatible with signed char *and* unsigned char, no matter what the default signedness for char is.
Diffstat (limited to 'Changelog')
-rw-r--r--Changelog1
1 files changed, 1 insertions, 0 deletions
diff --git a/Changelog b/Changelog
index b7ddd42..af206e3 100644
--- a/Changelog
+++ b/Changelog
@@ -68,6 +68,7 @@ Bug fixes:
- fix integer to double conversion on ARM (Thomas Preud'homme)
- fix parameter passing of (unsigned) long long bitfield (Thomas Preud'homme)
- fix relocation of Thumb branch to ARM function (Thomas Preud'homme)
+- fix char wrong compatibility with [un]signed char (Thomas Preud'homme)
version 0.9.26: