Commit c6bdf92e by Gabriel Dos Reis Committed by Gabriel Dos Reis

c-typeck.c (convert_for_assignment): Avoid cheking OPT_Wc___compat, as it is always true.

        * c-typeck.c (convert_for_assignment): Avoid cheking
        OPT_Wc___compat, as it is always true.

From-SVN: r100843
parent 39328081
2005-06-11 Gabriel Dos Reis <gdr@integrable-solutions.net>
* c-typeck.c (convert_for_assignment): Avoid checking
OPT_Wc___compat, as it is always true.
2005-06-11 David Edelsohn <edelsohn@gnu.org>
* config/rs6000/rs6000.md (eq<mode>_compare): Restrict to Pmode.
......
......@@ -3787,8 +3787,7 @@ convert_for_assignment (tree type, tree rhs, enum impl_conv errtype,
int *p = NULL;
where NULL is typically defined in C to be '(void *) 0'. */
if (OPT_Wc___compat && VOID_TYPE_P (ttr) && rhs != null_pointer_node
&& !VOID_TYPE_P (ttl))
if (VOID_TYPE_P (ttr) && rhs != null_pointer_node && !VOID_TYPE_P (ttl))
warning (OPT_Wc___compat, "request for implicit conversion from "
"%qT to %qT not permitted in C++", rhstype, type);
......
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