mirror of
git://gcc.gnu.org/git/gcc.git
synced 2025-01-11 00:45:26 +08:00
contrib: simplify filter-clang-warnings.py
contrib/ChangeLog: * filter-clang-warnings.py: Simplify.
This commit is contained in:
parent
1119902b6c
commit
af49fd41ab
@ -71,7 +71,6 @@ parser.add_argument('log', help='Log file with clang warnings')
|
||||
args = parser.parse_args()
|
||||
|
||||
lines = [line.strip() for line in open(args.log)]
|
||||
total = 0
|
||||
messages = set()
|
||||
for line in lines:
|
||||
token = ': warning: '
|
||||
@ -82,9 +81,9 @@ for line in lines:
|
||||
if '/libffi/' in location or location.startswith('Makefile'):
|
||||
continue
|
||||
if not skip_warning(location, message):
|
||||
total += 1
|
||||
messages.add(line)
|
||||
|
||||
for line in sorted(messages):
|
||||
print(line)
|
||||
print('\nTotal warnings: %d' % total)
|
||||
|
||||
print('\nTotal warnings: %d' % len(messages))
|
||||
|
Loading…
Reference in New Issue
Block a user