* c-typeck.c (convert_for_assignment): Avoid cheking
OPT_Wc___compat, as it is always true.
From-SVN: r100843
+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.
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);