Compiling GCC with Clang doesn't only yield Clang's warnings but also
warnings about .texi documentation files. In filter-clang-warnings.py
we blacklisted some .texi files. Blacklist all of them.
contrib/ChangeLog:
* filter-clang-warnings.py: Filter out all warnings comming from
files with ".texi" in their name.
Signed-off-by: Filip Kastl <fkastl@suse.cz>
# Rust peopel promised to clean these warnings too
'rust/': ['-Wunused-private-field'],
'libiberty/sha1.c': ['-Wc23-extensions'],
- 'avr-mmcu.texi': [''],
- 'gfortran.texi': [''],
- 'install.texi': [''],
- 'libgccjit.texi': [''],
'libtool': ['']
}
+ if ".texi" in filename:
+ return True
+
for name, ignore in ignores.items():
for i in ignore:
if name in filename and i in message: