contrib: filter more in filter-clang-warnings.py
authorMartin Liska <mliska@suse.cz>
Tue, 8 Dec 2020 10:20:21 +0000 (11:20 +0100)
committerMartin Liska <mliska@suse.cz>
Tue, 8 Dec 2020 10:21:26 +0000 (11:21 +0100)
contrib/ChangeLog:

* filter-clang-warnings.py: Filter more cases.

contrib/filter-clang-warnings.py

index 2b7b42fd099ea041c3e85becde79629d466396e2..72b5bbe322e4059b38bcabe032b46d9c1df7b0f2 100755 (executable)
@@ -44,10 +44,12 @@ def skip_warning(filename, message):
             'insn-attrtab.c': ['-Wparentheses-equality'],
             'gimple-match.c': ['-Wunused-', '-Wtautological-compare'],
             'generic-match.c': ['-Wunused-', '-Wtautological-compare'],
-            'i386.md': ['-Wparentheses-equality', '-Wtautological-compare'],
+            'i386.md': ['-Wparentheses-equality', '-Wtautological-compare',
+                        '-Wtautological-overlap-compare'],
             'sse.md': ['-Wparentheses-equality', '-Wtautological-compare'],
-            'genautomata.c': ['-Wstring-plus-int']
-
+            'genautomata.c': ['-Wstring-plus-int'],
+            'gfortran.texi': [''],
+            'libtool': ['']
     }
 
     for name, ignores in ignores.items():