(check_format_info): Avoid ?: conditional for function to be called.

From-SVN: r5704
This commit is contained in:
Richard Stallman 1993-10-10 05:28:35 +00:00
parent 14b6efffc7
commit 4215e49850
1 changed files with 3 additions and 2 deletions

View File

@ -865,8 +865,9 @@ check_format_info (info, params)
/* Don't warn about differences merely in signedness. */
&& !(TREE_CODE (wanted_type) == INTEGER_TYPE
&& TREE_CODE (cur_type) == INTEGER_TYPE
&& (wanted_type == (TREE_UNSIGNED (wanted_type)
? unsigned_type : signed_type) (cur_type))))
&& (TREE_UNSIGNED (wanted_type)
? wanted_type == unsigned_type (cur_type)
: wanted_type == signed_type (cur_type))))
{
register char *this;
register char *that;