Commit 11cc4546 by Jakub Jelinek Committed by Jakub Jelinek

* c-format.c (check_format_types): Revert unwanted checkin.

From-SVN: r138249
parent ebf5ba04
2008-07-29 Jakub Jelinek <jakub@redhat.com>
* c-format.c (check_format_types): Revert unwanted checkin.
2008-07-29 Jan Hubicka <jh@suse.cz> 2008-07-29 Jan Hubicka <jh@suse.cz>
* flags.h (flag_really_no_inline): Remove. * flags.h (flag_really_no_inline): Remove.
......
...@@ -2262,7 +2262,7 @@ check_format_types (format_wanted_type *types, const char *format_start, ...@@ -2262,7 +2262,7 @@ check_format_types (format_wanted_type *types, const char *format_start,
&& TREE_CODE (cur_type) == INTEGER_TYPE && TREE_CODE (cur_type) == INTEGER_TYPE
&& (!pedantic || i == 0 || (i == 1 && char_type_flag)) && (!pedantic || i == 0 || (i == 1 && char_type_flag))
&& (TYPE_UNSIGNED (wanted_type) && (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))) : wanted_type == c_common_signed_type (cur_type)))
continue; continue;
/* Likewise, "signed char", "unsigned char" and "char" are /* Likewise, "signed char", "unsigned char" and "char" are
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment