2001-01-11 23:44:00 +08:00
|
|
|
|
#!/bin/sed -f
|
|
|
|
|
#
|
|
|
|
|
# This script filters out gcc-wall crud that we're not interested in seeing.
|
|
|
|
|
#
|
|
|
|
|
/^cc /d
|
|
|
|
|
/^kcc /d
|
|
|
|
|
/^gcc /d
|
|
|
|
|
/does not support `long long'/d
|
2003-12-07 14:28:50 +08:00
|
|
|
|
/forbids long long integer constants/d
|
2001-01-11 23:44:00 +08:00
|
|
|
|
/does not support the `ll' length modifier/d
|
2003-12-07 14:28:50 +08:00
|
|
|
|
/does not support the `ll' printf length modifier/d
|
2001-01-15 00:11:14 +08:00
|
|
|
|
/ANSI C forbids long long integer constants/d
|
2001-01-11 23:44:00 +08:00
|
|
|
|
/traditional C rejects string concatenation/d
|
2001-01-15 00:11:14 +08:00
|
|
|
|
/integer constant is unsigned in ANSI C, signed with -traditional/d
|
2016-05-30 05:07:17 +08:00
|
|
|
|
/ISO C forbids conversion of object pointer to function pointer type/,+2d
|
2016-05-30 11:35:13 +08:00
|
|
|
|
/ISO C does not support ‘__FUNCTION__’ predefined identifier/d
|
2001-01-11 23:44:00 +08:00
|
|
|
|
/At top level:/d
|
|
|
|
|
/In file included from/d
|
|
|
|
|
/In function `.*':/d
|
2003-12-07 14:28:50 +08:00
|
|
|
|
/zero-length format string/d
|
|
|
|
|
/warning: (near initialization for/d
|
2001-01-11 23:44:00 +08:00
|
|
|
|
/^[ ]*from/d
|
|
|
|
|
|