mirror of
git://gcc.gnu.org/git/gcc.git
synced 2025-03-20 11:00:57 +08:00
contrib: filter out more unrelated warnings
contrib/ChangeLog: * filter-clang-warnings.py: Skip Makefile and libffi warnings.
This commit is contained in:
parent
3e030227ea
commit
0d1b5446bf
@ -79,6 +79,8 @@ for line in lines:
|
||||
if i != -1:
|
||||
location = line[:i]
|
||||
message = line[i + len(token):]
|
||||
if '/libffi/' in location or location.startswith('Makefile'):
|
||||
continue
|
||||
if not skip_warning(location, message):
|
||||
total += 1
|
||||
messages.add(line)
|
||||
|
Loading…
x
Reference in New Issue
Block a user