1 #!/bin/sed -f 2 # 3 # This script filters out gcc-wall crud that we're not interested in seeing. 4 # 5 /^cc /d 6 /^kcc /d 7 /^gcc /d 8 /does not support `long long'/d 9 /forbids long long integer constants/d 10 /does not support the `ll' length modifier/d 11 /does not support the `ll' printf length modifier/d 12 /ANSI C forbids long long integer constants/d 13 /traditional C rejects string concatenation/d 14 /integer constant is unsigned in ANSI C, signed with -traditional/d 15 /ISO C forbids conversion of object pointer to function pointer type/,+2d 16 /ISO C does not support __FUNCTION__ predefined identifier/d 17 /At top level:/d 18 /In file included from/d 19 /In function `.*':/d 20 /zero-length format string/d 21 /warning: (near initialization for/d 22 /^[ ]*from/d 23 24