diff options
author | Rafael Espindola <espindola@gcc.gnu.org> | 2007-06-11 15:40:55 +0000 |
---|---|---|
committer | Rafael Espindola <espindola@gcc.gnu.org> | 2007-06-11 15:40:55 +0000 |
commit | 12753674ec3e75275eca8b704c36d6dc3762ade6 (patch) | |
tree | 09e966f66888827cc56e0e29aacd33c5d45e7819 /gcc/c-format.c | |
parent | 73fd4ad6cd12dbb4ba0fbcf4e7fa11d22fd05ea3 (diff) | |
download | gcc-12753674ec3e75275eca8b704c36d6dc3762ade6.zip gcc-12753674ec3e75275eca8b704c36d6dc3762ade6.tar.gz gcc-12753674ec3e75275eca8b704c36d6dc3762ade6.tar.bz2 |
really remove signed(_or_unsigned)?_type langhooks
From-SVN: r125621
Diffstat (limited to 'gcc/c-format.c')
-rw-r--r-- | gcc/c-format.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/c-format.c b/gcc/c-format.c index 92e4ee6..a64e309 100644 --- a/gcc/c-format.c +++ b/gcc/c-format.c @@ -2249,7 +2249,7 @@ check_format_types (format_wanted_type *types, const char *format_start, && TREE_CODE (cur_type) == INTEGER_TYPE && (!pedantic || i == 0 || (i == 1 && char_type_flag)) && (TYPE_UNSIGNED (wanted_type) - ? wanted_type == unsigned_type_for (cur_type) + ? wanted_type == c_common_unsigned_type (cur_type) : wanted_type == c_common_signed_type (cur_type))) continue; /* Likewise, "signed char", "unsigned char" and "char" are |