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
This commit is contained in:
Gabriel Dos Reis 2005-06-11 19:47:01 +00:00 committed by Gabriel Dos Reis
parent 3932808120
commit c6bdf92e07
2 changed files with 6 additions and 2 deletions

View File

@ -1,3 +1,8 @@
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.

View File

@ -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);