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:
parent
c30d43bf62
commit
6fffb55cd7
@ -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
|
||||
|
@ -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. */
|
||||
|
Loading…
Reference in New Issue
Block a user