Commit 4215e498 by Richard Stallman

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

From-SVN: r5704
parent 14b6efff
...@@ -865,8 +865,9 @@ check_format_info (info, params) ...@@ -865,8 +865,9 @@ check_format_info (info, params)
/* Don't warn about differences merely in signedness. */ /* Don't warn about differences merely in signedness. */
&& !(TREE_CODE (wanted_type) == INTEGER_TYPE && !(TREE_CODE (wanted_type) == INTEGER_TYPE
&& TREE_CODE (cur_type) == INTEGER_TYPE && TREE_CODE (cur_type) == INTEGER_TYPE
&& (wanted_type == (TREE_UNSIGNED (wanted_type) && (TREE_UNSIGNED (wanted_type)
? unsigned_type : signed_type) (cur_type)))) ? wanted_type == unsigned_type (cur_type)
: wanted_type == signed_type (cur_type))))
{ {
register char *this; register char *this;
register char *that; register char *that;
......
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