c-typeck.c (build_c_cast): Change -Wcast-qual pedwarn for discarding qualifiers into a plain warning.

* c-typeck.c (build_c_cast): Change -Wcast-qual pedwarn for
        discarding qualifiers into a plain warning.

From-SVN: r35374
This commit is contained in:
Joseph Myers 2000-07-31 07:01:23 -06:00 committed by Jeff Law
parent c30d43bf62
commit 6fffb55cd7
2 changed files with 6 additions and 1 deletions

View File

@ -1,3 +1,8 @@
2000-07-31 Joseph S. Myers <jsm28@cam.ac.uk>
* c-typeck.c (build_c_cast): Change -Wcast-qual pedwarn for
discarding qualifiers into a plain warning.
2000-07-31 Kazu Hirata <kazu@hxi.com>
* h8300.h (MODES_TIEABLE_P): Accept a combination of QImode and

View File

@ -3765,7 +3765,7 @@ build_c_cast (type, expr)
if (warn)
/* There are qualifiers present in IN_OTYPE that are not
present in IN_TYPE. */
pedwarn ("cast discards qualifiers from pointer target type");
warning ("cast discards qualifiers from pointer target type");
}
/* Warn about possible alignment problems. */