c-typeck.c (build_c_cast): Add OPT_Wcast_qual to warnings.

* c-typeck.c (build_c_cast): Add OPT_Wcast_qual to warnings.

From-SVN: r127357
This commit is contained in:
Kaveh R. Ghazi 2007-08-11 13:32:52 +00:00 committed by Kaveh Ghazi
parent 01cda23277
commit ea7c218e46
2 changed files with 6 additions and 2 deletions

View File

@ -1,3 +1,7 @@
2007-08-11 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
* c-typeck.c (build_c_cast): Add OPT_Wcast_qual to warnings.
2007-08-10 Adam Nemet <anemet@caviumnetworks.com>
* config/mips/predicates.md (const_call_insn_operand): Invoke

View File

@ -3557,12 +3557,12 @@ build_c_cast (tree type, tree expr)
&& TREE_CODE (in_otype) == POINTER_TYPE);
if (added)
warning (0, "cast adds new qualifiers to function type");
warning (OPT_Wcast_qual, "cast adds new qualifiers to function type");
if (discarded)
/* There are qualifiers present in IN_OTYPE that are not
present in IN_TYPE. */
warning (0, "cast discards qualifiers from pointer target type");
warning (OPT_Wcast_qual, "cast discards qualifiers from pointer target type");
}
/* Warn about possible alignment problems. */